From: Jim Meyering Date: Fri, 31 Aug 2001 09:55:26 +0000 (+0000) Subject: (bool): Remove typedef, now that it's in system.h. X-Git-Tag: TEXTUTILS-2_0_15~217 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=b6c2910a612a56d486c0a18b8732fe4783dfee43;p=thirdparty%2Fcoreutils.git (bool): Remove typedef, now that it's in system.h. (TRUE): Define to `true', not 1. (FALSE): Define to `false', not 0. --- diff --git a/src/fmt.c b/src/fmt.c index f56745a47e..c958c69aba 100644 --- 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. */