Sign in
mojo
/
mojo-tools
/
9beb4f7377e271d83038be0bdaf53154ed6bc607
/
.
/
fusl
/
src
/
unistd
/
getpid.c
blob: 3728c1aa694d451a70f34ea376e4ff0f602a8af4 [
file
]
#include
<unistd.h>
#include
"syscall.h"
pid_t
getpid
(
void
)
{
return
__syscall
(
SYS_getpid
);
}