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