scc

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

commit 93d27ee2aa2f318960adb9d4f882a9e4fea13327
parent 7204b59c338a474645eac83b24a7b37be7eb8b88
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Thu,  4 Jul 2013 22:04:51 +0200

Remove all obsolete type definitions

These type definitions were used long time ago with the old
type implemention. They are not used anymore.

Diffstat:
Msymbol.h | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/symbol.h b/symbol.h @@ -51,9 +51,6 @@ struct symbol { struct symbol *hash; }; -extern struct type tchar, tshort, tint, tulong, tllong, tvoid, tkeyword; -extern struct type tfloat, tdouble, tldouble, tlong; - extern struct ctype *decl_type(struct ctype *t); extern void pushtype(unsigned mod);