android_mt6572_jiabo/external/strace/umask.c
2025-09-05 16:56:03 +08:00

8 lines
108 B
C

#include "defs.h"
SYS_FUNC(umask)
{
tprintf("%#lo", tcp->u_arg[0]);
return RVAL_DECODED | RVAL_OCTAL;
}