home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Graphics / graphics-16000.iso / msdos / raytrace / vort / vort / lib / status.h < prev    next >
C/C++ Source or Header  |  1991-02-07  |  148b  |  13 lines

  1.  
  2. /*
  3.  * on VMS exit 0 is bad and 1 is good (sigh).
  4.  */
  5. #ifdef VMS
  6. #define ALLOK        1
  7. #define ERROR        0
  8. #else 
  9. #define ALLOK        0
  10. #define ERROR        1
  11. #endif
  12.  
  13.