mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-06-10 09:10:08 -04:00
AIX problem with enum TRUE and FALSE (Ludse Verhoeven)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@730 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
parent
0d6e500dea
commit
e47b74ede5
2 changed files with 4 additions and 0 deletions
1
AUTHORS
1
AUTHORS
|
|
@ -82,3 +82,4 @@ Eric Bollengier
|
|||
Edwin Eefting
|
||||
Peter Hoogendijk
|
||||
Kjell Sundtjonn
|
||||
Ludse Verhoeven
|
||||
|
|
|
|||
|
|
@ -139,10 +139,13 @@ enum {
|
|||
ERROR = -1
|
||||
};
|
||||
|
||||
/* AIX seems to have this defined somewhere else */
|
||||
#ifndef FALSE
|
||||
enum {
|
||||
FALSE,
|
||||
TRUE
|
||||
};
|
||||
#endif
|
||||
|
||||
enum {
|
||||
STATE_OK,
|
||||
|
|
|
|||
Loading…
Reference in a new issue