From 1092f7c2824d4e4d01815a9f2f81f9514c8731ea Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Tue, 20 Oct 2015 20:06:42 +0200 Subject: [PATCH] Fixing typo in macro --- gfx.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx.h b/gfx.h index 21d5dbb1..eea3bce2 100644 --- a/gfx.h +++ b/gfx.h @@ -55,9 +55,9 @@ * __inline was standardized with C99. previous to that each compiler handles it differently. */ #undef INLINE -#ifdef(__KEIL__) +#ifdef __KEIL__ #define INLINE __inline -#elif(__C51__) +#elif __C51__ #define INLINE __inline #else #define INLINE inline