Files
luban-lite/bsp/peripheral/wireless/aic8800/platform/utils/inc/compiler.h
刘可亮 724d6bf65e v1.1.2
2025-01-08 19:12:06 +08:00

23 lines
446 B
C

#ifndef _AIC_COMPILER_H_
#define _AIC_COMPILER_H_
#ifndef __INLINE
#if defined PLATFORM_GX_ECOS || defined PLATFORM_SUNPLUS_ECOS
#define __INLINE static __inline
#else
#define __INLINE __inline
#endif
#endif /* _COMPILER_H_ */
#ifndef __STATIC_INLINE
#define __STATIC_INLINE static __inline
#endif /* __STATIC_INLINE */
#if defined(__CC_ARM)
#pragma anon_unions
#endif
#define dbg_vsnprintf vsnprintf
#endif /* _AIC_COMPILER_H_ */