aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2005-04-19 11:49:25 +0000
committerDr. Stephen Henson <steve@openssl.org>2005-04-19 11:49:25 +0000
commit65f0efe198fa6d4bf1b42bc42e80c2dcaa2813c9 (patch)
tree66d7e15017c46f72675d5aa9873d5bff340e586f /util
parente77d8f2ecd77a0b49b85c918efc483af97c1315c (diff)
downloadopenssl-65f0efe198fa6d4bf1b42bc42e80c2dcaa2813c9.tar.gz
Ignore TYPEDEF_OF in mkdef.pl
Diffstat (limited to 'util')
-rwxr-xr-xutil/mkdef.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 8ff98470d8..e2a83c9fc7 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;