mescc: Tinycc support: stdint.h: declare size_t.

* mlibc/include/stdint.h (size_t)[!__MES_SIZE_T]: Declare.
This commit is contained in:
Jan Nieuwenhuizen 2017-08-27 11:29:07 +02:00
parent 69073e1954
commit 21e9bf833c
1 changed files with 5 additions and 0 deletions

View File

@ -38,6 +38,11 @@ typedef int int32_t;
typedef unsigned long long uint64_t;
typedef long long int64_t;
#ifndef __MES_SIZE_T
#define __MES_SIZE_T
typedef unsigned long size_t;
#endif
// FIXME
typedef int intmax_t;
typedef unsigned uintmax_t;