From 225baf25274b0ce5d1704fa82c08a76a5bdc8aee Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Sat, 9 Feb 2019 07:44:18 +0100 Subject: [PATCH] mescc: Mes C Library: Support gcc-4.6.4: Avoid type/size_t conflicts. * include/alloca.h: Remove typedefs, include sys/types.h. * include/stdint.h: Likewise. * include/string.h: Likewise. --- include/stdint.h | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/include/stdint.h b/include/stdint.h index ec79b364..40a96166 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -61,24 +61,6 @@ typedef long long int64_t; typedef int intmax_t; typedef unsigned uintmax_t; -#ifndef __MES_SIZE_T -#define __MES_SIZE_T -#undef size_t -typedef unsigned long size_t; -#endif - -#ifndef __MES_INTPTR_T -#define __MES_INTPTR_T -#undef intptr_t -typedef long intptr_t; -#endif - -#ifndef __MES_UINTPTR_T -#define __MES_UINTPTR_T -#undef uintptr_t -typedef long uintptr_t; -#endif - #include #define CHAR_BIT 8