Sign in
mojo
/
mojo-tools
/
73e948c3cd78ca019b82d8ad10c2326e3920fffc
/
.
/
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
);
}