From f575a0dd796106af502e8693870c49af5bee2a5d Mon Sep 17 00:00:00 2001 From: Aleksa Vučković Date: Tue, 2 Nov 2021 22:50:09 +0100 Subject: Hosted GCC Cross-Compiler --- src/include/unistd.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/include/unistd.h (limited to 'src/include/unistd.h') diff --git a/src/include/unistd.h b/src/include/unistd.h new file mode 100644 index 0000000..a6bfee0 --- /dev/null +++ b/src/include/unistd.h @@ -0,0 +1,14 @@ +#ifndef _UNISTD_H +#define _UNISTD_H +#include +#ifdef __cplusplus +extern "C" { +#endif +int execv(const char*, char* const[]); +int execve(const char*, char* const[], char* const[]); +int execvp(const char*, char* const[]); +pid_t fork(void); +#ifdef __cplusplus +} +#endif +#endif -- cgit v1.2.3