blob: cc00cc6a03c9d5f7bfdcb2e01569aa0783f0a215 [file] [log] [blame]
Dmitry V. Levind590f3c2014-12-06 03:53:16 +00001#include "defs.h"
2
3int
4sys_umask(struct tcb *tcp)
5{
6 if (entering(tcp)) {
7 tprintf("%#lo", tcp->u_arg[0]);
8 }
9 return RVAL_OCTAL;
10}