diff options
Diffstat (limited to 'libc-bottom-half/getpid')
-rw-r--r-- | libc-bottom-half/getpid/getpid.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libc-bottom-half/getpid/getpid.c b/libc-bottom-half/getpid/getpid.c new file mode 100644 index 0000000..d2920ac --- /dev/null +++ b/libc-bottom-half/getpid/getpid.c @@ -0,0 +1,6 @@ +#include <unistd.h> + +pid_t getpid(void) { + // Return an arbitrary value, greater than 1 which is special. + return 42; +} |