]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(bool): Remove typedef, now that it's in system.h.
authorJim Meyering <jim@meyering.net>
Fri, 31 Aug 2001 09:55:26 +0000 (09:55 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 31 Aug 2001 09:55:26 +0000 (09:55 +0000)
(TRUE): Define to `true', not 1.
(FALSE): Define to `false', not 0.

src/fmt.c

index f56745a47e7f20a1ec6c65e96e60ebc462f2f883..c958c69aba405b8a18aa5a310c04545567d06064 100644 (file)
--- a/src/fmt.c
+++ b/src/fmt.c
@@ -117,11 +117,10 @@ typedef long COST;
 
 /* Miscellaneous definitions.  */
 
-typedef unsigned int bool;
 #undef TRUE
-#define TRUE   1
+#define TRUE true
 #undef FALSE
-#define FALSE  0
+#define FALSE false
 
 /* Word descriptor structure.  */