scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 1b2bcd0b455e35c6792bb1ce19859288e696a00a
parent fb52401a1d119fd02590755c6fd5173ac65210b2
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Fri, 17 Jul 2015 21:31:19 +0200

whitespace fixes

Diffstat:
Mcc1/cc1.h | 2+-
Mcc1/types.c | 1-
2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/cc1/cc1.h b/cc1/cc1.h @@ -334,7 +334,7 @@ extern unsigned cppctx; extern Input *input; extern int lexmode; -extern Type *voidtype, *pvoidtype, *booltype, +extern Type *voidtype, *pvoidtype, *booltype, *uchartype, *chartype, *uinttype, *inttype, *ushortype, *shortype, diff --git a/cc1/types.c b/cc1/types.c @@ -10,7 +10,6 @@ #define NR_TYPE_HASH 16 - /* * Initializaion of type pointers were done with * a C99 initilizator '... = &(Type) {...', but