Fixing typo in macro

This commit is contained in:
Joel Bodenmann 2015-10-20 20:06:42 +02:00
parent fd7e047bf8
commit 1092f7c282

4
gfx.h
View File

@ -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