From 6d356ae74d138f7d3f3401e05cdee4cfed22f580 Mon Sep 17 00:00:00 2001 From: Love Hornquist Astrand Date: Tue, 7 May 2013 13:27:10 -0700 Subject: [PATCH] remove debug printf's --- cf/make-proto.pl | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cf/make-proto.pl b/cf/make-proto.pl index b38d1c354..4ac88de6f 100644 --- a/cf/make-proto.pl +++ b/cf/make-proto.pl @@ -296,10 +296,6 @@ if($oproto) { } $private_h_trailer = ""; -foreach(sort keys %exported){ - printf(" exported $_\n"); -} - foreach(sort keys %funcs){ if(/^(main)$/) { next } if ($funcs{$_} =~ /\^/) { @@ -309,7 +305,6 @@ foreach(sort keys %funcs){ $beginblock = $endblock = ""; } # if we have an export table and doesn't have content, or matches private RE - print "exported $_ " . scalar(keys(%exported)) . " " . keys(%exported) . "\n"; if((scalar(keys(%exported)) ne 0 && !exists $exported{$_} ) || /$private_func_re/) { $private_h .= $beginblock; $private_h .= $funcs{$_} . "\n" ;