summaryrefslogtreecommitdiff
path: root/LibC/stat.cpp
blob: 9dd53da298b39b6367dd37841eecc956650546f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <sys/stat.h>
#include <Kernel/Syscall.h>

extern "C" {

mode_t umask(mode_t mask)
{
    return Syscall::invoke(Syscall::SC_umask, (dword)mask);
}

}