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.
This commit is contained in:
Jan Nieuwenhuizen 2019-02-09 07:44:18 +01:00
parent 0f7af7ac61
commit 544540d332
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
3 changed files with 3 additions and 43 deletions

View File

@ -29,11 +29,7 @@
#else // ! WITH_GLIBC
#ifndef __MES_SIZE_T
#define __MES_SIZE_T
#undef size_t
typedef unsigned long size_t;
#endif
#include <sys/types.h>
#if _ALLOCA_UNSIGNED
void * alloca (unsigned size);

View File

@ -61,29 +61,7 @@ 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 intptr_t
typedef long uintptr_t;
#endif
#ifndef __MES_PTRDIFF_T
#define __MES_PTRDIFF_T
#undef ptrdiff_t
typedef long ptrdiff_t;
#endif
#include <sys/types.h>
#define CHAR_BIT 8
#define CHAR_MAX 255

View File

@ -29,21 +29,7 @@
#else // ! WITH_GLIBC
#ifndef NULL
#define NULL 0
#endif
#ifndef __MES_SIZE_T
#define __MES_SIZE_T
#undef size_t
typedef unsigned long size_t;
#endif
#ifndef __MES_SSIZE_T
#define __MES_SSIZE_T
#undef ssize_t
typedef long ssize_t;
#endif
#include <sys/types.h>
void * memchr (void const *block, int c, size_t size);
void *memcpy (void *dest, void const *src, size_t n);