home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / libg++-2.7.1-base.tgz / libg++-2.7.1-src.tar / fsf / libg++ / libiberty / vfork.c < prev    next >
Text File  |  1995-05-15  |  157b  |  9 lines

  1. /* Emulate vfork using just plain fork, for systems without a real vfork.
  2.    This function is in the public domain. */
  3.  
  4. int
  5. vfork ()
  6. {
  7.   return (fork ());
  8. }
  9.