scc

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

commit c97ecd8ee6431a55b0d6413bc8f5068ba1b4f197
parent 5ebf7e680f7738d2a2f5580982b179a21240b6b2
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 25 Oct 2013 17:27:16 +0200

Remove code.h header

This header was not used at all.

Diffstat:
Dcode.h | 8--------
Mexpr.c | 1-
2 files changed, 0 insertions(+), 9 deletions(-)

diff --git a/code.h b/code.h @@ -1,8 +0,0 @@ -#ifndef CODE_H -#define CODE_H - -struct symbol; -extern void push(register struct symbol *sym); -extern void runcode(void); - -#endif diff --git a/expr.c b/expr.c @@ -5,7 +5,6 @@ #include "tokens.h" #include "symbol.h" #include "syntax.h" -#include "code.h" struct node *expr(void);