scc

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

commit 712fa062baee56baf1c9e7c33c46937bb95064a0
parent 0af5513b097a22fa8cb181e4d11f671f2f02ab26
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 29 Jun 2012 10:31:33 +0200

Removed unused isfunction function

After last commit this function is no longer needed.

Diffstat:
Mtypes.c | 6------
Mtypes.h | 1-
2 files changed, 0 insertions(+), 7 deletions(-)

diff --git a/types.c b/types.c @@ -185,9 +185,3 @@ void ptype(register struct type *t) } #endif - - -unsigned char isfunction(struct type *t) -{ - return t->op == FTN; -} diff --git a/types.h b/types.h @@ -57,7 +57,6 @@ extern void ptype(register struct type *t); #endif -extern unsigned char isfunction(struct type *t); extern struct type *btype(struct type *tp, unsigned char tok); #endif