summaryrefslogtreecommitdiff
path: root/util/mkdef.pl
diff options
context:
space:
mode:
authorsteve <steve>2005-04-19 11:49:25 +0000
committersteve <steve>2005-04-19 11:49:25 +0000
commitec5144b641da860ccce6bf2e073c9631a9796f81 (patch)
tree8a4f1ce66def1e315d613dd5a82e2c43642f5619 /util/mkdef.pl
parentbe3f182d998e528a2f73218aea6cccc3b9bb74be (diff)
downloadopenssl-ec5144b641da860ccce6bf2e073c9631a9796f81.tar.gz
Ignore TYPEDEF_OF in mkdef.pl
Diffstat (limited to 'util/mkdef.pl')
-rwxr-xr-xutil/mkdef.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 8ff98470d..e2a83c9fc 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -848,6 +848,9 @@ sub do_defs
/(\w+(\{[0-9]+\})?)\W*\(\)/s;
$s = $1;
print STDERR "DEBUG: found function $s\n" if $debug;
+
+ } elsif (/TYPEDEF_\w+_OF/) {
+ next;
} elsif (/\(/ and not (/=/)) {
print STDERR "File $file: cannot parse: $_;\n";
next;