]> granicus.if.org Git - strace/blob - umask.c
io.c: use printaddr and umove_or_printaddr
[strace] / umask.c
1 #include "defs.h"
2
3 SYS_FUNC(umask)
4 {
5         tprintf("%#lo", tcp->u_arg[0]);
6
7         return RVAL_DECODED | RVAL_OCTAL;
8 }