dep.pl: add new type mp_min_u32
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";