From: Matthias Kruk Date: Mon, 18 Nov 2019 11:36:57 +0000 (+0900) Subject: Add unistd.h header X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=f286d340c04e8e1c5f00441b196ff387c776c71e;p=corax Add unistd.h header --- diff --git a/include/unistd.h b/include/unistd.h new file mode 100644 index 0000000..5c9d929 --- /dev/null +++ b/include/unistd.h @@ -0,0 +1,12 @@ +#ifndef _UNISTD_H +#define _UNISTD_H + +#include +#include + +extern pid_t fork(void); +extern pid_t vfork(void); +extern int execfve(void*, const char**, const char**); +extern unsigned int sleep(unsigned int); + +#endif /* _UNISTD_H */