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