1
0
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:
Roland McGrath
2003-03-03 07:11:42 +00:00
parent 7d9952c196
commit 620656a3ff

View File

@@ -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);