]> granicus.if.org Git - strace/blob - umask.c
nlattr: add UID/GID netlink attribute decoders
[strace] / umask.c
1 #include "defs.h"
2
3 SYS_FUNC(umask)
4 {
5         print_numeric_umode_t(tcp->u_arg[0]);
6
7         return RVAL_DECODED | RVAL_OCTAL;
8 }