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