shithub: mc

ref: a3e640134dc9e002a2b56ee14f7250c36871d1e8
dir: /lib/std/assert.myr/

View raw version
use "fmt.use"
use "syswrap.use"
use "varargs.use"

pkg std =
	const assert	: (cond : bool, fmt : byte[:], args : ... -> void)
;;

const assert = {cond, msg, args
	var ap

	ap = vastart(&args)
	if !cond
		std.fputv(2, msg, &ap)
		suicide()
	;;
}