From bb8a3bb609b37ef946a2b4e42b905e5995d0d18a Mon Sep 17 00:00:00 2001 From: Markus Scherer <markus.icu@gmail.com> Date: Mon, 25 Jul 2011 18:56:25 +0000 Subject: [PATCH] ICU-8452 remove the non-working conditional z/OS int8_t typedef X-SVN-Rev: 30417 --- icu4c/source/common/unicode/ptypes.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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 <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; -- 2.40.0