From 4952129efb5ff1260e8b4507a0c384773df8dcce Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 15 Apr 2015 13:32:40 -0400 Subject: [PATCH] Removed debug printf's --- runtime.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/runtime.h b/runtime.h index 057ad23c..7849290f 100644 --- a/runtime.h +++ b/runtime.h @@ -861,9 +861,6 @@ static common_type Cyc_sum_va_list(int argc, object n, va_list ns) { } } - printf("sum = "); - Cyc_display(&sum); - printf("\n"); return sum; } @@ -872,7 +869,6 @@ static common_type Cyc_sum_va(int argc, object n, ...) { va_start(ap, n); common_type result = Cyc_sum_va_list(argc, n, ap); va_end(ap); - printf("cyc_sum_va, argc = %d\n", argc); return result; } @@ -882,10 +878,6 @@ static void dispatch_sum(int argc, object clo, object cont, object n, ...) { va_start(ap, n); common_type result = Cyc_sum_va_list(argc - 1, n, ap); va_end(ap); - - printf("argc = %d, sum result = ", argc); - Cyc_display(&result); - printf("\n"); return_funcall1(cont, &result); }