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
/
_getgid.c
blob
5a7174b73cbfa5457dd455323696514f362f9e86
1
#include <lib.h>
2
#define getgid _getgid
3
#include <unistd.h>
4
5
PUBLIC gid_t
getgid
()
6
{
7
message m
;
8
9
return
( (
gid_t
)
_syscall
(
MM
,
GETGID
, &
m
));
10
}