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 AS-safety of close when aio is in use and fd map is expanded
[musl.git]
/
src
/
unistd
/
getpgid.c
blob
d295bfd59b0748e6ae0dae27ed2365a1888442b1
1
#include <unistd.h>
2
#include
"syscall.h"
3
4
pid_t
getpgid
(
pid_t pid
)
5
{
6
return
syscall
(
SYS_getpgid
,
pid
);
7
}