aboutsummaryrefslogtreecommitdiffstats
path: root/gfx.h
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@seriouslyembedded.com>2015-10-20 20:06:42 +0200
committerJoel Bodenmann <joel@seriouslyembedded.com>2015-10-20 20:06:42 +0200
commit1092f7c2824d4e4d01815a9f2f81f9514c8731ea (patch)
tree676e33204baf2d88f1b2386ffbb22622ccae8edb /gfx.h
parentfd7e047bf80720cc5dc2801955a74b425942102c (diff)
downloaduGFX-1092f7c2824d4e4d01815a9f2f81f9514c8731ea.tar.gz
uGFX-1092f7c2824d4e4d01815a9f2f81f9514c8731ea.tar.bz2
uGFX-1092f7c2824d4e4d01815a9f2f81f9514c8731ea.zip
Fixing typo in macro
Diffstat (limited to 'gfx.h')
-rw-r--r--gfx.h4
1 files 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