diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-12-04 20:31:45 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-12-04 20:31:45 +0000 |
commit | 2187adc619cc51f17582626349a161a81243303a (patch) | |
tree | a21131193044e8a873d76f1e32f61824a90e1ff0 | |
parent | 8cede00b9eccb077232030723867566ad5685c6f (diff) | |
download | busybox-w32-2187adc619cc51f17582626349a161a81243303a.tar.gz busybox-w32-2187adc619cc51f17582626349a161a81243303a.tar.bz2 busybox-w32-2187adc619cc51f17582626349a161a81243303a.zip |
Flag day warning!
Change TRUE and FALSE defines to normal C style TRUE=1, FALSE=0.
-Erik
-rw-r--r-- | busybox.h | 4 | ||||
-rw-r--r-- | include/busybox.h | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -45,8 +45,8 @@ | |||
45 | 45 | ||
46 | 46 | ||
47 | /* Some useful definitions */ | 47 | /* Some useful definitions */ |
48 | #define FALSE ((int) 1) | 48 | #define FALSE ((int) 0) |
49 | #define TRUE ((int) 0) | 49 | #define TRUE ((int) 1) |
50 | 50 | ||
51 | /* for mtab.c */ | 51 | /* for mtab.c */ |
52 | #define MTAB_GETMOUNTPT '1' | 52 | #define MTAB_GETMOUNTPT '1' |
diff --git a/include/busybox.h b/include/busybox.h index bd8fca53b..4a4f44aea 100644 --- a/include/busybox.h +++ b/include/busybox.h | |||
@@ -45,8 +45,8 @@ | |||
45 | 45 | ||
46 | 46 | ||
47 | /* Some useful definitions */ | 47 | /* Some useful definitions */ |
48 | #define FALSE ((int) 1) | 48 | #define FALSE ((int) 0) |
49 | #define TRUE ((int) 0) | 49 | #define TRUE ((int) 1) |
50 | 50 | ||
51 | /* for mtab.c */ | 51 | /* for mtab.c */ |
52 | #define MTAB_GETMOUNTPT '1' | 52 | #define MTAB_GETMOUNTPT '1' |