Sign in
mojo
/
mojo-tools
/
b237bca1446a4ef1006f2804ecdfeb1a0cf286ae
/
.
/
fusl
/
src
/
unistd
/
getppid.c
blob: a61d735af5f2c5411bb832f2a75c1b15151f7148 [
file
]
#include
<unistd.h>
#include
"syscall.h"
pid_t
getppid
(
void
)
{
return
__syscall
(
SYS_getppid
);
}