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