URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [posix/] [src/] [fork.c] - Rev 1771
Go to most recent revision | Compare with Previous | Blame | View Log
/* * fork() - POSIX 1003.1b 3.1.1 * * fork.c,v 1.2 2001/01/24 14:17:28 joel Exp */ #if HAVE_CONFIG_H #include "config.h" #endif #include <sys/types.h> #include <errno.h> int fork( void ) { errno = ENOSYS; return -1; }
Go to most recent revision | Compare with Previous | Blame | View Log