00001
00016 #ifndef _CO_INT_H_
00017 #define _CO_INT_H_
00018
00019
00031
00032
00033
00034
00035
00036
00037
00038
00039 #if defined(CFG_RWTL) || defined(CFG_RWX1)
00041 #ifndef __int8_t_defined
00042 #define __int8_t_defined
00043 typedef signed char int8_t;
00044 typedef short int16_t;
00045 typedef int int32_t;
00046 typedef long long int64_t;
00047 #endif
00048
00049 typedef unsigned char uint8_t;
00050 typedef unsigned short uint16_t;
00051
00052 #ifndef __uint32_t_defined
00053 #define __uint32_t_defined
00054 typedef unsigned int uint32_t;
00055 #endif
00056 typedef unsigned long long uint64_t;
00057 #else
00058 #include <stdint.h>
00059 #endif
00060
00061
00063 #endif // _CO_INT_H_