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

File Contents

# User Rev Content
1 greg 1.1 #ifndef lint
2 greg 2.2 static const char RCSid[] = "$Id$";
3 greg 1.1 #endif
4 greg 2.2 /*
5     * Default program quit routine.
6     */
7    
8 greg 2.3 #include "copyright.h"
9 greg 1.1
10 greg 2.2 void
11 greg 1.1 quit(code) /* quit program */
12     int code;
13     {
14     exit(code);
15     }