Sign in
mojo
/
mojo-testing
/
f56fd59ec51e1ecdd52fb848ceff1b6b6fe7f7fa
/
.
/
fusl
/
src
/
unistd
/
getpgid.c
blob: 4673a0fb870a11a4fa82d694423261fa00c333dd [
file
]
#include
<unistd.h>
#include
"syscall.h"
pid_t
getpgid
(
pid_t
pid
)
{
return
syscall
(
SYS_getpgid
,
pid
);
}