URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [gdb-5.0/] [libiberty/] [vfork.c] - Rev 1772
Go to most recent revision | Compare with Previous | Blame | View Log
/* Emulate vfork using just plain fork, for systems without a real vfork. This function is in the public domain. */ int vfork () { return (fork ()); }
Go to most recent revision | Compare with Previous | Blame | View Log