home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / NEWS / RADIANCE / SRC / COMMON / VFORK.H < prev    next >
C/C++ Source or Header  |  1993-10-07  |  336b  |  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.