Go to the documentation of this file.
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>
87 typedef signed char int8_t;
91 typedef unsigned char uint8_t;
95 typedef signed short int16_t;
99 typedef unsigned short uint16_t;
103 typedef signed int int32_t;
106 #if ! U_HAVE_UINT32_T
107 typedef unsigned int uint32_t;
112 typedef signed __int64 int64_t;
114 typedef signed long long int64_t;
118 #if ! U_HAVE_UINT64_T
120 typedef unsigned __int64 uint64_t;
122 typedef unsigned long long uint64_t;