ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/vfork.h
Revision: 2.6
Committed: Mon Nov 10 16:41:52 2003 UTC (20 years, 7 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 2.5: +1 -1 lines
State: FILE REMOVED
Log Message:
Removed redeclaration of fork() call + vfork.h header, using rtprocess.h instead

File Contents

# User Rev Content
1 greg 2.6 /* RCSid $Id: vfork.h,v 2.5 2003/06/27 06:53:22 greg Exp $ */
2 greg 2.1 /*
3     * Header for routines using vfork() system call.
4 greg 2.3 */
5 greg 2.1
6 greg 2.2 #if !defined(BSD) || defined(sparc)
7 greg 2.1
8     #define vfork fork
9    
10     #endif
11 greg 2.2
12     extern int vfork();