diff options
Diffstat (limited to 'libgloss/libnosys/fork.c')
-rw-r--r-- | libgloss/libnosys/fork.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/libgloss/libnosys/fork.c b/libgloss/libnosys/fork.c deleted file mode 100644 index f5795cb..0000000 --- a/libgloss/libnosys/fork.c +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Stub version of fork. - */ - -#include "config.h" -#include <_ansi.h> -#include <_syslist.h> -#include <errno.h> -#undef errno -extern int errno; -#include "warning.h" - -int -_DEFUN (_fork, (), - _NOARGS) -{ - errno = ENOSYS; - return -1; -} - -stub_warning(_fork) |