Utah Raster Toolkit
9999-git
URT Development version (post-3.1b)
Main Page
Data Structures
Files
File List
Globals
include
exit_status.h
Go to the documentation of this file.
1
#
ifndef
EXIT_STATUS_DEFINED
2
3
#
define
EXIT_STATUS_DEFINED
4
5
#
ifdef
__STDC__
6
7
#
define
EXIT_STATUS_SUCCESS
0
8
#
define
EXIT_STATUS_FAILURE
1
9
10
#
else
11
12
#
ifdef
VMS
13
#
define
EXIT_STATUS_SUCCESS
(
1
|
0x10000000
)
14
#
define
EXIT_STATUS_FAILURE
(
0
|
0x10000000
)
15
#
else
16
#
define
EXIT_STATUS_SUCCESS
0
17
#
define
EXIT_STATUS_FAILURE
1
18
#
endif
19
20
#
endif
21
22
23
#
endif
Generated on Thu Sep 24 2015 11:47:05 for Utah Raster Toolkit by
1.8.10