mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-28 04:08:08 +00:00
13 lines
159 B
C++
13 lines
159 B
C++
#include <sys/stat.h>
|
|
#include <Kernel/Syscall.h>
|
|
|
|
extern "C" {
|
|
|
|
mode_t umask(mode_t mask)
|
|
{
|
|
return Syscall::invoke(Syscall::SC_umask, (dword)mask);
|
|
}
|
|
|
|
}
|
|
|