repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
secondary cache feature in vm.
[minix.git]
/
lib
/
libc
/
posix
/
_umask.c
blob
170cca1932851782f53ffab9b77cda977a09ab0d
1
#include <lib.h>
2
#define umask _umask
3
#include <sys/stat.h>
4
5
PUBLIC mode_t
umask
(
mode_t complmode
)
6
{
7
message m
;
8
9
m
.
m1_i1
=
complmode
;
10
return
( (
mode_t
)
_syscall
(
FS
,
UMASK
, &
m
));
11
}