aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fetchmail.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/fetchmail.h b/fetchmail.h
index 1ff759a2..765078ec 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -65,7 +65,11 @@ struct idlist
struct idlist *next;
};
+#ifndef TRUE
typedef int bool;
+#define FALSE 0
+#define TRUE 1
+#endif /* TRUE */
struct hostdata /* shared among all user connections to given server */
{
@@ -273,9 +277,6 @@ XMALLOCTYPE *xmalloc(int);
XMALLOCTYPE *xrealloc(XMALLOCTYPE *, int);
char *xstrdup(const char *);
-#define FALSE 0
-#define TRUE 1
-
#define STRING_DISABLED (char *)-1
/* fetchmail.h ends here */