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:
Ton Voon 2003-09-16 12:32:13 +00:00
parent 0d6e500dea
commit e47b74ede5
2 changed files with 4 additions and 0 deletions

View file

@ -82,3 +82,4 @@ Eric Bollengier
Edwin Eefting
Peter Hoogendijk
Kjell Sundtjonn
Ludse Verhoeven

View file

@ -139,10 +139,13 @@ enum {
ERROR = -1
};
/* AIX seems to have this defined somewhere else */
#ifndef FALSE
enum {
FALSE,
TRUE
};
#endif
enum {
STATE_OK,