diff options
Diffstat (limited to 'Source/UnixUserland/fork.c')
-rw-r--r-- | Source/UnixUserland/fork.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/UnixUserland/fork.c b/Source/UnixUserland/fork.c new file mode 100644 index 0000000..012bc17 --- /dev/null +++ b/Source/UnixUserland/fork.c @@ -0,0 +1,8 @@ +#include <errno.h> +#undef errno +extern int errno; + +int fork() { + errno = EAGAIN; + return -1; +} |