Sign in
cobalt
/
cobalt
/
0585facbd3129ea3f3d3c63f9539aacbad3130c8
/
.
/
third_party
/
musl
/
src
/
unistd
/
setpgid.c
blob: 061606951d4f170ad9bf80b31ee3414a12c64bac [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
setpgid
(
pid_t
pid
,
pid_t
pgid
)
{
return
syscall
(
SYS_setpgid
,
pid
,
pgid
);
}