Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
unistd
/
setpgid.c
blob: 061606951d4f170ad9bf80b31ee3414a12c64bac [
file
]
#include
<unistd.h>
#include
"syscall.h"
int
setpgid
(
pid_t
pid
,
pid_t
pgid
)
{
return
syscall
(
SYS_setpgid
,
pid
,
pgid
);
}