shithub: mc

ref: fbafcadef80bcb3f2ecdd7c6162c2eea5b3ed8b4
dir: /lib/std/sleep.myr/

View raw version
use "syswrap-ss"
use "types"

pkg std =
	const usleep	: (tm : time -> void)
;;

const usleep = {tm
	nanosleep((tm * 1000 : uint64))
}