repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
iconv: add aliases for GBK
[musl.git]
/
src
/
stat
/
umask.c
blob
5ee913e2d08846af8fdad4a1308d772bf145d1df
1
#include <sys/stat.h>
2
#include
"syscall.h"
3
4
mode_t
umask
(
mode_t mode
)
5
{
6
return
syscall
(
SYS_umask
,
mode
);
7
}