38 #ifndef __STDC_LIMIT_MACROS
39 #define __STDC_LIMIT_MACROS
70 #if U_PLATFORM == U_PF_OS390
74 #if !defined(__uint8_t)
76 typedef unsigned char uint8_t;
80 #elif U_HAVE_INTTYPES_H
82 # include <inttypes.h>
88 typedef signed char int8_t;
92 typedef unsigned char uint8_t;
96 typedef signed short int16_t;
100 typedef unsigned short uint16_t;
104 typedef signed int int32_t;
107 #if ! U_HAVE_UINT32_T
108 typedef unsigned int uint32_t;
113 typedef signed __int64 int64_t;
115 typedef signed long long int64_t;
119 #if ! U_HAVE_UINT64_T
121 typedef unsigned __int64 uint64_t;
123 typedef unsigned long long uint64_t;