exit_status.h

Go to the documentation of this file.
00001 /** @addtogroup utahrle */
00002 /*@{*/
00003 /** @file exit_status.h */
00004 
00005 /* for libutahrle */
00006 
00007 #ifndef EXIT_STATUS_DEFINED
00008 
00009 #define EXIT_STATUS_DEFINED
00010 
00011 #ifdef __STDC__
00012 
00013 #   define EXIT_STATUS_SUCCESS  0
00014 #   define EXIT_STATUS_FAILURE  1
00015 
00016 #else
00017 
00018 #   ifdef VMS
00019 #       define EXIT_STATUS_SUCCESS      (1 | 0x10000000)
00020 #       define EXIT_STATUS_FAILURE      (0 | 0x10000000)
00021 #   else
00022 #       define EXIT_STATUS_SUCCESS      0
00023 #       define EXIT_STATUS_FAILURE      1
00024 #   endif
00025 
00026 #endif
00027 #endif
00028 /*@}*/

Generated on Mon Sep 18 01:24:40 2006 for BRL-CAD by  doxygen 1.4.6