From 7ebcfbbbfb1f844261b3c810684ffa244e41080b Mon Sep 17 00:00:00 2001 From: chatty Date: Wed, 22 Dec 1993 12:26:39 +0000 Subject: replaced TRUE/FALSE by true/false --- utils/bool.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'utils/bool.h') diff --git a/utils/bool.h b/utils/bool.h index ec3b36d..67f2265 100644 --- a/utils/bool.h +++ b/utils/bool.h @@ -14,14 +14,14 @@ #ifndef _bool_h #define _bool_h 1 -#if defined(TRUE) -#undef TRUE -#undef FALSE +#if defined(true) +#undef true +#undef false #endif enum bool { - TRUE = 1, - FALSE = 0 + true = 1, + false = 0 }; #endif /* _bool_h */ -- cgit v1.1