blob: b66861c1f9e3d43b35bdd17bcfd477bf4c240c9b (
plain) (
blame)
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);
}
|