shithub: mc

ref: 36bcb6d94f7ef17c9e40cf68fd26d78ec814c596
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))
}