diff options
Diffstat (limited to 'libtommath/dep.pl')
-rw-r--r-- | libtommath/dep.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libtommath/dep.pl b/libtommath/dep.pl index c39e27e..0a5d19a 100644 --- a/libtommath/dep.pl +++ b/libtommath/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"; |