From 8ed6043209ec9bbfc45125c177405c3b27c0a5ec Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Sun, 28 Sep 2014 13:33:35 +0200 Subject: [PATCH] dep.pl: add new type mp_min_u32 --- dep.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dep.pl b/dep.pl index c39e27e..0a5d19a 100644 --- a/dep.pl +++ b/dep.pl @@ -68,7 +68,7 @@ foreach my $filename (glob "bn*.c") { $line = $'; # now $& is the match, we want to skip over LTM keywords like # mp_int, mp_word, mp_digit - if (!($& eq "mp_digit") && !($& eq "mp_word") && !($& eq "mp_int")) { + if (!($& eq "mp_digit") && !($& eq "mp_word") && !($& eq "mp_int") && !($& eq "mp_min_u32")) { my $a = $&; $a =~ tr/[a-z]/[A-Z]/; $a = "BN_" . $a . "_C";