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
fix and overhaul dlsym depedency order, always record direct deps
[musl.git]
/
src
/
unistd
/
getgid.c
blob
1c9fe7157b351c8858c2e6d1e2aba96eb2231e20
1
#include <unistd.h>
2
#include
"syscall.h"
3
4
gid_t
getgid
(
void
)
5
{
6
return
__syscall
(
SYS_getgid
);
7
}