diff options
Diffstat (limited to 'src/unistd/getpid.c')
-rw-r--r-- | src/unistd/getpid.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/unistd/getpid.c b/src/unistd/getpid.c new file mode 100644 index 00000000..31cbe1cb --- /dev/null +++ b/src/unistd/getpid.c @@ -0,0 +1,7 @@ +#include <unistd.h> +#include "syscall.h" + +pid_t getpid(void) +{ + return syscall0(__NR_getpid); +} |