summaryrefslogtreecommitdiffstats
path: root/sysroot/usr/include/unistd.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysroot/usr/include/unistd.h')
-rw-r--r--sysroot/usr/include/unistd.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/sysroot/usr/include/unistd.h b/sysroot/usr/include/unistd.h
new file mode 100644
index 0000000..4e14be9
--- /dev/null
+++ b/sysroot/usr/include/unistd.h
@@ -0,0 +1,11 @@
+#ifndef _UNISTD_H
+#define _UNISTD_H 1
+
+#include <sys/types.h>
+
+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