Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / syscalls / sysfork.c
blob282f73fe3720df099279deea116480e2df6ed52e
1 /* connector for fork */
3 /* Don't define this if NO_FORK. See for example libc/sys/win32/spawn.c. */
5 #ifndef NO_FORK
7 #include <reent.h>
8 #include <unistd.h>
10 int
11 fork (void)
13 return _fork_r (_REENT);
16 #endif