mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-25 13:38:54 +00:00
23 lines
446 B
C
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_ */
|