From f95a4a932476be2ba99e2fd081e8d2bc6ea12813 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Fri, 15 Dec 2017 09:38:53 -0500 Subject: Import newlib and create makefile --- newlib/libc/syscalls/sysfork.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 newlib/libc/syscalls/sysfork.c (limited to 'newlib/libc/syscalls/sysfork.c') diff --git a/newlib/libc/syscalls/sysfork.c b/newlib/libc/syscalls/sysfork.c new file mode 100644 index 0000000..9fe319f --- /dev/null +++ b/newlib/libc/syscalls/sysfork.c @@ -0,0 +1,19 @@ +/* connector for fork */ + +/* Don't define this if NO_FORK. See for example libc/sys/win32/spawn.c. */ + +#ifndef NO_FORK + +#include + +int +fork () +{ +#ifdef REENTRANT_SYSCALLS_PROVIDED + return _fork_r (_REENT); +#else + return _fork (); +#endif +} + +#endif -- cgit v1.2.3