]> granicus.if.org Git - icu/commitdiff
ICU-8452 remove the non-working conditional z/OS int8_t typedef
authorMarkus Scherer <markus.icu@gmail.com>
Mon, 25 Jul 2011 18:56:25 +0000 (18:56 +0000)
committerMarkus Scherer <markus.icu@gmail.com>
Mon, 25 Jul 2011 18:56:25 +0000 (18:56 +0000)
X-SVN-Rev: 30417

icu4c/source/common/unicode/ptypes.h

index 008e3bdcd77cdf9018f8647157735b94566dfdad..5768ccddc5e4ce44fd23b4ad632f4d34a8901186 100644 (file)
  */
 #include <stdint.h>
 
-/* z/OS has <stdint.h>, but some versions are missing int8_t and/or uint8_t (APAR PK62248). */
 #if U_PLATFORM == U_PF_OS390
 /* The features header is needed to get (u)int64_t sometimes. */
 #include <features.h>
-#if !defined(__int8_t)
-#define __int8_t 1
-typedef signed char int8_t;
-#endif
+/* z/OS has <stdint.h>, but some versions are missing uint8_t (APAR PK62248). */
 #if !defined(__uint8_t)
 #define __uint8_t 1
 typedef unsigned char uint8_t;