This commit was generated by cvs2svn to track changes on a CVS vendor
[deliverable/binutils-gdb.git] / libiberty / vfork.c
CommitLineData
252b5132
RH
1/* Emulate vfork using just plain fork, for systems without a real vfork.
2 This function is in the public domain. */
3
4int
5vfork ()
6{
7 return (fork ());
8}
This page took 0.031523 seconds and 4 git commands to generate.