]> granicus.if.org Git - strace/blob - tests/umask.c
Mpersify RTC_* ioctl parser
[strace] / tests / umask.c
1 #include <stdio.h>
2 #include <sys/stat.h>
3
4 int
5 main(void)
6 {
7         mode_t rc = umask(044);
8         printf("umask(%#o) = %#o\n", 044, rc);
9
10         puts("+++ exited with 0 +++");
11         return 0;
12 }