summaryrefslogtreecommitdiffstats
path: root/libc-bottom-half/getpid/getpid.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-bottom-half/getpid/getpid.c')
-rw-r--r--libc-bottom-half/getpid/getpid.c6
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;
+}