From 65ba015d6c1f248d36ad01a653bc49637804b15b Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Sun, 10 Aug 2025 15:46:33 -0400 Subject: working usermode objdir iteration --- lib/libc-headless/include/unistd.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/libc-headless/include/unistd.h (limited to 'lib/libc-headless/include/unistd.h') diff --git a/lib/libc-headless/include/unistd.h b/lib/libc-headless/include/unistd.h new file mode 100644 index 0000000..4e14be9 --- /dev/null +++ b/lib/libc-headless/include/unistd.h @@ -0,0 +1,11 @@ +#ifndef _UNISTD_H +#define _UNISTD_H 1 + +#include + +int execv(const char *pathname, char *const argv[]); +int execve(const char *pathname, char *const argv[], char *const envp[]); +int execvp(const char *pathname, char *const argv[]); +pid_t fork(void); + +#endif -- cgit v1.2.1