

#if defined __C51__
// Keil C51 specific stuff
typedef unsigned char  u8;
typedef   signed char  s8;
typedef unsigned short u16;
typedef   signed short s16;
typedef unsigned long  u32;
typedef   signed long  s32;

#elif defined __GNUC__
// GCC-AVR specific stuff
typedef unsigned char  u8;
typedef   signed char  s8;
typedef unsigned short u16;
typedef   signed short s16;
typedef unsigned long  u32;
typedef   signed long  s32;

#else
// Neither GCC nor C51 - force the user to take specifc action!
#error Unsupported Compiler!

#endif