2002-02-06 Roland McGrath <roland@frob.com>

* scripts/firstversions.awk: Don't mess with GLIBC_PRIVATE.
This commit is contained in:
Roland McGrath 2002-02-07 04:33:51 +00:00
parent 3fb558781f
commit e7a2d9c0a9
1 changed files with 12 additions and 9 deletions

View File

@ -21,16 +21,19 @@ $1 == "}" {
next;
}
{
v = firstversion[thislib, idx[thislib]];
/GLIBC_PRIVATE/ { print; next }
if (! v)
print;
else if ($1 == v) {
print;
firstversion[thislib, idx[thislib]] = 0;
idx[thislib]++;
{
if ((thislib, idx[thislib]) in firstversion) {
v = firstversion[thislib, idx[thislib]];
if ($1 == v) {
print;
firstversion[thislib, idx[thislib]] = 0;
idx[thislib]++;
}
else
print $1, "=", v;
}
else
print $1, "=", v;
print;
}