projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3ae7093
)
There's no need to check for __attribute__ with ANSI functions, since
author
Richard Levitte
<levitte@openssl.org>
Fri, 4 Apr 2003 14:19:00 +0000
(14:19 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Fri, 4 Apr 2003 14:19:00 +0000
(14:19 +0000)
we only check to the opening parenthesis anyway...
util/mkerr.pl
patch
|
blob
|
history
diff --git
a/util/mkerr.pl
b/util/mkerr.pl
index cf34a35ce11aae3b9a513867923e35be5834f065..1b2915c7677948b0c48ae7658505f1110b7af467 100644
(file)
--- 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;