From: Richard Levitte Date: Fri, 4 Apr 2003 14:19:00 +0000 (+0000) Subject: There's no need to check for __attribute__ with ANSI functions, since X-Git-Tag: BEN_FIPS_TEST_1~38^2~160 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=b5f96e8818188c542dcff3d38deb9303ccd2ccca There's no need to check for __attribute__ with ANSI functions, since we only check to the opening parenthesis anyway... --- diff --git a/util/mkerr.pl b/util/mkerr.pl index cf34a35ce1..1b2915c767 100644 --- a/util/mkerr.pl +++ b/util/mkerr.pl @@ -128,7 +128,7 @@ while (($hdr, $lib) = each %libinc) s/^[\n\s]*//g; s/[\n\s]*$//g; next if(/typedef\W/); - if (/\(\*(\w*)\([^\)]+\)(\s*__attribute__\(.*\)\s*)?$/) { + if (/\(\*(\w*)\([^\)]+/) { my $name = $1; $name =~ tr/[a-z]/[A-Z]/; $ftrans{$name} = $1;