home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource Library: Graphics
/
graphics-16000.iso
/
msdos
/
raytrace
/
vort
/
vort
/
lib
/
status.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-02-07
|
148b
|
13 lines
/*
* on VMS exit 0 is bad and 1 is good (sigh).
*/
#ifdef VMS
#define ALLOK 1
#define ERROR 0
#else
#define ALLOK 0
#define ERROR 1
#endif