aboutsummaryrefslogtreecommitdiff
path: root/src/stat/umask.c
blob: 5e2412e1391bd86e04bf5547c94e9b50b163c615 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <sys/stat.h>
#include "syscall.h"

mode_t umask(mode_t mode)
{
	return syscall(SYS_umask, mode);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif