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