diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-12-04 20:31:45 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-12-04 20:31:45 +0000 |
commit | faddc957b723e230ffa83325a0b9186a61321b70 (patch) | |
tree | a21131193044e8a873d76f1e32f61824a90e1ff0 /include | |
parent | 4291a19ff2a34af04adfdb28e3902e4ac1aad38d (diff) | |
download | busybox-w32-faddc957b723e230ffa83325a0b9186a61321b70.tar.gz busybox-w32-faddc957b723e230ffa83325a0b9186a61321b70.tar.bz2 busybox-w32-faddc957b723e230ffa83325a0b9186a61321b70.zip |
Flag day warning!
Change TRUE and FALSE defines to normal C style TRUE=1, FALSE=0.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@1375 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r-- | include/busybox.h | 4 |
1 files changed, 2 insertions, 2 deletions
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' |