ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/vfork.h
Revision: 2.2
Committed: Wed Jan 12 16:05:10 1994 UTC (30 years, 5 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.1: +3 -10 lines
Log Message:
hopefully fixed this for Sun Solaris and SPARC's (yuck!)

File Contents

# User Rev Content
1 greg 2.1 /* Copyright (c) 1992 Regents of the University of California */
2    
3     /* SCCSid "$SunId$ LBL" */
4    
5     /*
6     * Header for routines using vfork() system call.
7     */
8    
9    
10 greg 2.2 #if !defined(BSD) || defined(sparc)
11 greg 2.1
12     #define vfork fork
13    
14     #endif
15 greg 2.2
16     extern int vfork();