ref: e72ff77facf957ccb145104b63b1757a3a4da210
dir: /libstd/now.myr/
use sys
use "types.use"
use "fmt.use"
pkg std =
	const now	: (-> time)
;;
/* microseconds since epoch */
const now = {
	var tm
	var sec
	var nsec
	if sys.clock_gettime(`sys.Clockrealtime, &tm) == 0
		sec = tm.sec
		nsec = tm.nsec castto(uint64)
		-> (sec*1_000_000 + nsec/1000) castto(time)
	else
		-> -1
	;;
}