URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems/] [c/] [src/] [exec/] [posix/] [src/] [fork.c] - Rev 158
Go to most recent revision | Compare with Previous | Blame | View Log
/* * fork() - POSIX 1003.1b 3.1.1 * * $Id: fork.c,v 1.1.1.1 2001-07-10 09:42:34 chris Exp $ */ #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