ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/vfork.h
Revision: 2.4
Committed: Tue Feb 25 02:47:22 2003 UTC (21 years, 3 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad3R5
Changes since 2.3: +2 -57 lines
Log Message:
Replaced inline copyright notice with #include "copyright.h"

File Contents

# User Rev Content
1 greg 2.4 /* RCSid $Id$ */
2 greg 2.1 /*
3     * Header for routines using vfork() system call.
4 greg 2.3 */
5    
6 greg 2.4 #include "copyright.h"
7 greg 2.1
8    
9 greg 2.2 #if !defined(BSD) || defined(sparc)
10 greg 2.1
11     #define vfork fork
12    
13     #endif
14 greg 2.2
15     extern int vfork();