ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Download File
|
Root Listing
root
/
radiance
/
ray
/
src
/
common
/
quit.c
Revision:
1.1
Committed:
Mon Jul 15 11:25:03 1991 UTC
(33 years, 9 months ago) by
greg
Content type:
text/plain
Branch:
MAIN
Log Message:
Initial revision
File Contents
#
Content
1
/* Copyright (c) 1991 Regents of the University of California */
2
3
#ifndef lint
4
static char SCCSid[] = "$SunId$ LBL";
5
#endif
6
7
quit(code) /* quit program */
8
int code;
9
{
10
exit(code);
11
}