summary refs log tree commit diff
path: root/lisc/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'lisc/main.c')
-rw-r--r--lisc/main.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/lisc/main.c b/lisc/main.c
index af02d2e..9595fe1 100644
--- a/lisc/main.c
+++ b/lisc/main.c
@@ -15,18 +15,6 @@ char debug['Z'+1] = {
 
 static int dbg;
 
-void
-dumpts(Bits *b, Tmp *tmp, FILE *f)
-{
-	int t;
-
-	fprintf(f, "[");
-	for (t=Tmp0; t<BITS*NBit; t++)
-		if (BGET(*b, t))
-			fprintf(f, " %s", tmp[t].name);
-	fprintf(f, " ]\n");
-}
-
 static void
 data(Dat *d)
 {