home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / libiberty / vfork.c < prev    next >
Encoding:
Text File  |  1996-07-04  |  157 b   |  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.