Fixing typo in macro
This commit is contained in:
parent
fd7e047bf8
commit
1092f7c282
1 changed files with 2 additions and 2 deletions
4
gfx.h
4
gfx.h
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue