Fixing typo in macro

ugfx_release_2.6
Joel Bodenmann 2015-10-20 20:06:42 +02:00
parent fd7e047bf8
commit 1092f7c282
1 changed files with 2 additions and 2 deletions

4
gfx.h
View File

@ -55,9 +55,9 @@
* __inline was standardized with C99. previous to that each compiler handles it differently. * __inline was standardized with C99. previous to that each compiler handles it differently.
*/ */
#undef INLINE #undef INLINE
#ifdef(__KEIL__) #ifdef __KEIL__
#define INLINE __inline #define INLINE __inline
#elif(__C51__) #elif __C51__
#define INLINE __inline #define INLINE __inline
#else #else
#define INLINE inline #define INLINE inline