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