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