From 2a8ba363d8a8b8bad42113bc2c7b52013e645bb1 Mon Sep 17 00:00:00 2001 From: Chris Pavlina Date: Tue, 12 Jul 2016 22:01:41 -0400 Subject: [PATCH] Use stdbool to avoid polluting namespace with non-C99 macros --- src/microrl.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/microrl.h b/src/microrl.h index 3831afe..c2bdba4 100644 --- a/src/microrl.h +++ b/src/microrl.h @@ -3,8 +3,7 @@ #include "config.h" -#define true 1 -#define false 0 +#include /* define the Key codes */ #define KEY_NUL 0 /**< ^@ Null character */