home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Raytrace & Morphing / SOS-RAYTRACE.ISO / programm / source / radsrc22 / src / common / vfork.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-26  |  336 b   |  24 lines

  1. /* Copyright (c) 1992 Regents of the University of California */
  2.  
  3. /* SCCSid "@(#)vfork.h 2.1 3/19/92 LBL" */
  4.  
  5. /*
  6.  * Header for routines using vfork() system call.
  7.  */
  8.  
  9. #ifdef BSD
  10.  
  11. #ifdef sparc
  12. #include "/usr/include/vfork.h"
  13. #else
  14. extern int    vfork();
  15. #endif
  16.  
  17. #else
  18.  
  19. extern int    fork();
  20.  
  21. #define    vfork    fork
  22.  
  23. #endif
  24.