diff --git a/auto/bin/parse_spec.pl b/auto/bin/parse_spec.pl index 2e03f6c..61478dc 100755 --- a/auto/bin/parse_spec.pl +++ b/auto/bin/parse_spec.pl @@ -176,15 +176,15 @@ sub parse_spec($) # add line to function list push @fnc, $_; - my $f = normalize_prototype(@fnc); - print STDERR "$f\n"; + # my $f = normalize_prototype(@fnc); + # print STDERR "$f\n"; # if normalized version of function looks like a function if (normalize_prototype(@fnc) =~ /$regex{function}/) { # get return type, name, and arguments, add them to functions hash my ($return, $name, $parms) = ($1, $2, $3); - print STDERR "$1 | $2 | $3\n"; + # print STDERR "$1 | $2 | $3\n"; if (!ignore_function($name, $extname)) { $name =~ s/^/gl/ unless $name =~ /$regex{prefix}/;