scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 04896c0cb0b29caaad3976bba16428610be15a48
parent 2fae9d998da0050e988c600e6581a076441382ef
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon, 11 Jan 2016 10:11:24 +0100

Mark as integer type size_t

Diffstat:
Mcc1/types.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/cc1/types.c b/cc1/types.c @@ -270,6 +270,7 @@ static Type types[] = { .letter = L_UINT, .defined = 1, .size = 2, + .integer = 1, .arith = 1, .align = 1, .n.rank = RANK_UINT,