22 lines
		
	
	
		
			262 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			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)
 |