From 4e9fc02a956a53d1893440c944bbf85fd5814700 Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Thu, 7 Jun 2012 10:19:00 -0400 Subject: [PATCH] splint: use typedef instead of macro --- gmqcc.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gmqcc.h b/gmqcc.h index 7290cb6..6b5fddb 100644 --- a/gmqcc.h +++ b/gmqcc.h @@ -53,10 +53,11 @@ # endif /* !true */ # define false (0) # define true (1) -# define bool _Bool # if __STDC_VERSION__ < 199901L && __GNUC__ < 3 typedef int _Bool -# endif +# else + typedef _Bool bool; +# endif # endif /* !__cplusplus */ /* -- 2.39.2