shithub: scc

Download patch

ref: 712fa062baee56baf1c9e7c33c46937bb95064a0
parent: 0af5513b097a22fa8cb181e4d11f671f2f02ab26
author: Roberto E. Vargas Caballero <[email protected]>
date: Fri Jun 29 06:31:33 EDT 2012

Removed unused isfunction function

After last commit this function is no longer needed.

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