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

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