diff options
author | Jim Meyering <jim@meyering.net> | 2001-08-31 09:55:26 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-08-31 09:55:26 +0000 |
commit | b6c2910a612a56d486c0a18b8732fe4783dfee43 (patch) | |
tree | cace4c426951434e428ad470827c86498d7a30c6 /src | |
parent | 023c594b9b4bbee2f6d8fa9c16f602d840413609 (diff) | |
download | coreutils-b6c2910a612a56d486c0a18b8732fe4783dfee43.tar.xz |
(bool): Remove typedef, now that it's in system.h.
(TRUE): Define to `true', not 1.
(FALSE): Define to `false', not 0.
Diffstat (limited to 'src')
-rw-r--r-- | src/fmt.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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. */ |