summaryrefslogtreecommitdiff
path: root/lib/libc/stat/umask.c
blob: f9026df8bdefbf024af2fce1497f556455987c54 (plain)
1
2
3
4
5
6
7
8
9
10
#include "asm/unistd_64.h" // for __NR_umask

#include <sys/stat.h>  // for umask
#include <sys/types.h> // for mode_t
#include <syscall.h>   // for __syscall_1, syscall

mode_t umask(mode_t cmask)
{
	return syscall(umask, cmask);
}