Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
wasi
libc-bottom-half
getpid
getpid.c
pretty
plain
permalink
blame
history
•
6 lines
•
126 B
1
#include <unistd.h>
2
3
pid_t getpid(void) {
4
// Return an arbitrary value, greater than 1 which is special.
5
return 42;
6
}