mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
2003-03-02 Roland McGrath <roland@redhat.com>
* scripts/abilist.awk: Reject data items with apparent 0 size.
This commit is contained in:
parent
7d9952c196
commit
620656a3ff
@ -44,6 +44,10 @@ $2 == "g" || $2 == "w" && NF == 7 {
|
||||
print symbol, version, weak, "?", type, $4, $5;
|
||||
next;
|
||||
}
|
||||
if (size == " 0x") {
|
||||
print symbol, version, weak, "?", type, $4, $5;
|
||||
next;
|
||||
}
|
||||
|
||||
# Disabled -- weakness should not matter to shared library ABIs any more.
|
||||
#if (weak == "w") type = tolower(type);
|
||||
|
Loading…
x
Reference in New Issue
Block a user