00001
00002
00003
00004
00005
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