mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
2003-03-02 Roland McGrath <roland@redhat.com>
* scripts/abilist.awk: Don't distinguish weak symbols in normal output.
This commit is contained in:
parent
4adacf579f
commit
44aeb4868c
@ -45,7 +45,9 @@ $2 == "g" || $2 == "w" && NF == 7 {
|
||||
next;
|
||||
}
|
||||
|
||||
desc = " " symbol " " (weak == "w" ? tolower(type) : type) size;
|
||||
# Disabled -- weakness should not matter to shared library ABIs any more.
|
||||
#if (weak == "w") type = tolower(type);
|
||||
desc = " " symbol " " type size;
|
||||
|
||||
if (version in versions) {
|
||||
versions[version] = versions[version] "\n" desc;
|
||||
|
Loading…
Reference in New Issue
Block a user