Sign in
android
/
platform
/
external
/
musl
/
0b44a0315b47dd8eced9f3b7f31580cf14bbfc01
/
.
/
src
/
unistd
/
getppid.c
blob: a3241829964940c1bd273b632ca56de89baea5a5 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
pid_t
getppid
(
void
)
{
return
syscall0
(
__NR_getppid
);
}