#!/bin/bash

is_main() {
	[ "$0" != "$BASH_SOURCE" ]
}

log() {
	echo "$@" >&2;
}

# wrappers

sleep_log_2() {  }
