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 (31 years, 3 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

# Content
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 #if !defined(BSD) || defined(sparc)
11
12 #define vfork fork
13
14 #endif
15
16 extern int vfork();