1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-27 09:08:25 +00:00

(re)define FALSE and TRUE, non-existent on my system

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@1195 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Phil 2008-06-25 21:06:54 +00:00
parent 28478344ab
commit 7f09a767f0

View File

@ -34,7 +34,12 @@
#include <mcheck.h>
#endif /* HAS_MCHECK_H */
#undef EQUAL
#undef FALSE
#undef TRUE
#define EQUAL 0 //returnvalue of strcmp-variants when strings are equal
#define FALSE 0
#define TRUE 1
#include "config.h"
#include <sys/utsname.h>