Add __inline__ for Diab compiler

This commit is contained in:
Tesfa Mael
2022-02-08 19:54:26 -08:00
parent 32c80781bf
commit f49b7107a0

View File

@ -259,6 +259,12 @@ decouple library dependencies with standard string, memory and so on.
#endif
#elif defined(__CCRX__)
#define WC_INLINE inline
#elif defined(__DCC__)
#ifndef __cplusplus
#define WC_INLINE __inline__
#else
#define WC_INLINE inline
#endif
#else
#define WC_INLINE
#endif