Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
unistd
/
getppid.c
blob: 05cade53b689226bff4a6726eafe2e97a5535b01 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
pid_t
getppid
(
void
)
{
return
__syscall
(
SYS_getppid
);
}