4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-16 03:19:54 +08:00
2000-03-17 22:48:54 +00:00

22 lines
262 B
C

/*
* 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)