From: Dr. Stephen Henson Date: Tue, 19 Apr 2005 11:49:25 +0000 (+0000) Subject: Ignore TYPEDEF_OF in mkdef.pl X-Git-Tag: BEN_FIPS_TEST_8~42^2~125 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=65f0efe198fa6d4bf1b42bc42e80c2dcaa2813c9;p=thirdparty%2Fopenssl.git Ignore TYPEDEF_OF in mkdef.pl --- diff --git a/util/mkdef.pl b/util/mkdef.pl index 8ff98470d8c..e2a83c9fc73 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;