ref: 85f16daa8d4d8b344fc9f2ae3c633b994eda3ae8
dir: /lib/std/syswrap-ss+freebsd.myr/
use sys use "errno" use "cstrconv" use "slcp" use "die" pkg std = $noret const exit : (status:int -> void) pkglocal const bgetcwd : (buf : byte[:] -> errno) ;; const exit = {status; sys.exit(status)} const bgetcwd = {buf var res res = sys.__getcwd(buf) castto(errno) if res == 0 -> cstrlen(buf) castto(errno) elif res == Enomem -> Erange else -> res ;; }