diff options
Diffstat (limited to 'src/unistd/getpid.c')
-rw-r--r-- | src/unistd/getpid.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/getpid.c b/src/unistd/getpid.c index a6d4e6d1..94958af9 100644 --- a/src/unistd/getpid.c +++ b/src/unistd/getpid.c @@ -5,3 +5,11 @@ pid_t getpid(void) { return __syscall(SYS_getpid); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |