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