fixed more binutils issues (newer gcc/libc)
[zpugcc/jano.git] / toolchain / gcc / libgloss / zpu / fork.c
blob4e5f14886fb819384bd63c1e1dfba5a7e5d9b8dc
1 /*
2 * Stub version of fork.
3 */
5 #include <_ansi.h>
6 #include <_syslist.h>
7 #include <errno.h>
9 int
10 _DEFUN (fork, (),
11 _NOARGS)
13 errno = ENOSYS;
14 return -1;