diff options
author | Ian Moffett <ian@osmora.org> | 2025-08-08 17:18:52 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-08-08 17:18:52 -0400 |
commit | 4269a34c1c0592dfde8f6e1fb6d2e94d19ba7a11 (patch) | |
tree | c99e8a1f9f5116747eeef8171e4fcad733be7ef8 /lib/libc/include/unistd.h | |
parent | 11ae00114e53f890a770f523cc66c8eb388695f5 (diff) |
lib: libc: Add POSIX fork() stub
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/libc/include/unistd.h')
-rw-r--r-- | lib/libc/include/unistd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/include/unistd.h b/lib/libc/include/unistd.h index 21206ad..8c6b7c8 100644 --- a/lib/libc/include/unistd.h +++ b/lib/libc/include/unistd.h @@ -62,6 +62,7 @@ off_t lseek(int fildes, off_t offset, int whence); pid_t getpid(void); pid_t getppid(void); +pid_t fork(void); extern char *optarg; extern int optind, opterr, optopt; |