commit | 2187adc619cc51f17582626349a161a81243303a | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Mon Dec 04 20:31:45 2000 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Mon Dec 04 20:31:45 2000 +0000 |
tree | a21131193044e8a873d76f1e32f61824a90e1ff0 | |
parent | 8cede00b9eccb077232030723867566ad5685c6f [diff] [blame] |
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'