blob: 2dcea283a948d987baf44b52b666550dcf04612a [file] [log] [blame]
#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;
}