Sign in
nest-open-source
/
nest-cam
/
4320010
/
strace
/
refs/heads/master
/
.
/
strace
/
tests
/
umask.c
blob: 2dcea283a948d987baf44b52b666550dcf04612a [
file
] [
log
] [
blame
] [
edit
]
#include
<stdio.h>
#include
<sys/stat.h>
int
main
(
void
)
{
mode_t
rc
=
umask
(
044
);
printf
(
"umask(%#o) = %#o\n"
,
044
,
rc
);
puts
(
"+++ exited with 0 +++"
);
return
0
;
}