From: Markus Scherer Date: Mon, 25 Jul 2011 18:56:25 +0000 (+0000) Subject: ICU-8452 remove the non-working conditional z/OS int8_t typedef X-Git-Tag: milestone-59-0-1~4627 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb8a3bb609b37ef946a2b4e42b905e5995d0d18a;p=icu ICU-8452 remove the non-working conditional z/OS int8_t typedef X-SVN-Rev: 30417 --- diff --git a/icu4c/source/common/unicode/ptypes.h b/icu4c/source/common/unicode/ptypes.h index 008e3bdcd77..5768ccddc5e 100644 --- a/icu4c/source/common/unicode/ptypes.h +++ b/icu4c/source/common/unicode/ptypes.h @@ -40,14 +40,10 @@ */ #include -/* z/OS has , 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 -#if !defined(__int8_t) -#define __int8_t 1 -typedef signed char int8_t; -#endif +/* z/OS has , but some versions are missing uint8_t (APAR PK62248). */ #if !defined(__uint8_t) #define __uint8_t 1 typedef unsigned char uint8_t;