repo.or.cz
/
minix3-old.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added lance entry to drivers.conf.
[minix3-old.git]
/
lib
/
posix
/
_getuid.c
blob
93c996056b6376f6a1155bb8884b311abd153de8
1
#include <lib.h>
2
#define getuid _getuid
3
#include <unistd.h>
4
5
PUBLIC uid_t
getuid
()
6
{
7
message m
;
8
9
return
( (
uid_t
)
_syscall
(
MM
,
GETUID
, &
m
));
10
}