Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
de400b6609becbc6a5ae87fa8b155f02a860e257
/
.
/
src
/
unistd
/
getpid.c
blob: a6d4e6d1bc9fc610a54b3a177a7f34bebfe50eb7 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
pid_t
getpid
(
void
)
{
return
__syscall
(
SYS_getpid
);
}