Sign in
mojo
/
mojo-tools
/
1209a8232086824720a8a2fc3a1d8143a0653fbb
/
.
/
fusl
/
src
/
unistd
/
getpgrp.c
blob: 6035de9b631ca75bbf35fe1d78b66ebaf708da3b [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
pid_t
getpgrp
(
void
)
{
return
__syscall
(
SYS_getpgid
,
0
);
}