Flag day warning!
Change TRUE and FALSE defines to normal C style TRUE=1, FALSE=0.
 -Erik
diff --git a/include/busybox.h b/include/busybox.h
index bd8fca5..4a4f44a 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -45,8 +45,8 @@
 
 
 /* Some useful definitions */
-#define FALSE   ((int) 1)
-#define TRUE    ((int) 0)
+#define FALSE   ((int) 0)
+#define TRUE    ((int) 1)
 
 /* for mtab.c */
 #define MTAB_GETMOUNTPT '1'