Flag day warning!

Change TRUE and FALSE defines to normal C style TRUE=1, FALSE=0.
 -Erik
This commit is contained in:
Eric Andersen 2000-12-04 20:31:45 +00:00
parent 8cede00b9e
commit 2187adc619
2 changed files with 4 additions and 4 deletions

View File

@ -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'

View File

@ -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'