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, 6 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

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