225a226,250
> 
> 
> 
> #ifdef __GNUC__
> #define COMPILER_INLINE_PACK
> #elif defined(__DCC__)
> #define COMPILER_INLINE_PACK  __packed__
> #elif defined (__ICCARM__)
> #define COMPILER_INLINE_PACK
> #else
> DEFINE PACKING FOR YOUR COMPILER
> #endif
> 
> #ifndef __GNUC__
> #define __attribute__(x)
> #define __builtin_choose_expr(a,b,c) ((a) ? (b) : (c))
> #endif
> 
> #ifdef __DCC__
> #define inline __inline__
> #define __func__  "\0"
> #endif
> 
> 
> 
