ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/vfork.h
Revision: 2.1
Committed: Thu Mar 19 09:31:04 1992 UTC (32 years, 2 months ago) by greg
Content type: text/plain
Branch: MAIN
Log Message:
Initial revision

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 #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