ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/quit.c
Revision: 2.4
Committed: Sat Jun 7 12:50:20 2003 UTC (20 years, 10 months ago) by schorsch
Content type: text/plain
Branch: MAIN
Changes since 2.3: +3 -1 lines
Log Message:
Various small changes to reduce compile warnings/errors on Windows.

File Contents

# User Rev Content
1 greg 1.1 #ifndef lint
2 schorsch 2.4 static const char RCSid[] = "$Id: quit.c,v 2.3 2003/02/25 02:47:21 greg Exp $";
3 greg 1.1 #endif
4 greg 2.2 /*
5     * Default program quit routine.
6     */
7    
8 greg 2.3 #include "copyright.h"
9 schorsch 2.4
10     #include <stdlib.h>
11 greg 1.1
12 greg 2.2 void
13 greg 1.1 quit(code) /* quit program */
14     int code;
15     {
16     exit(code);
17     }