1 #include "defs.h"
2 
SYS_FUNC(umask)3 SYS_FUNC(umask)
4 {
5 	tprintf("%#lo", tcp->u_arg[0]);
6 
7 	return RVAL_DECODED | RVAL_OCTAL;
8 }
9