]> granicus.if.org Git - strace/blob - umask.c
sock: cast pointers to kernel_ureg_t instead of unsigned long
[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 }