musl - an implementation of the standard library for Linux-based systems
blob: 5ee913e2d08846af8fdad4a1308d772bf145d1df (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <sys/stat.h>
#include "syscall.h"
mode_t umask(mode_t mode)
{
return syscall(SYS_umask, mode);
}
|