shithub: mc

ref: 8e1bb5d4fc204ce149ceb545aef7b783d73641bc
dir: /lib/std/types.myr/

View raw version
use sys

pkg std =
	type size	= sys.size	/* spans entire address space */
	type usize	= sys.usize	/* unsigned size */
	type off	= sys.off	/* file offsets */
	type intptr	= sys.intptr	/* can hold any pointer losslessly */
	type time	= sys.time	/* milliseconds since epoch */
;;