e75a025 ^
efb3325 ^
0b75e19 ^
1 2
3 4 5 6 7
8 9 10
11 12 13 14
/* * Items: umask( * Standardized-By: SuS * Detected-by: gcc-4.4.3 + Linux * Not-detected-by: BSD */ #include <sys/stat.h> #include <sys/types.h> main(int arg, char **argv) { umask(777); }