1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

2003-03-02 Roland McGrath <roland@redhat.com>

* sysdeps/unix/sysv/linux/ia64/brk.S: Add .type and .size for __curbrk.
This commit is contained in:
Roland McGrath
2003-03-03 07:11:46 +00:00
parent 620656a3ff
commit f5d3159377
2 changed files with 11 additions and 2 deletions

View File

@ -131,15 +131,22 @@ END {
# S[I] is a sorted, comma-separated list of SET:CONFIG pairs.
# All we have to do is pretty-print them.
nc = split(s[i], c, ",");
lastvers = "";
lastvers = lastconf = "";
for (j = 1; j <= nc; ++j) {
split(c[j], temp, ":");
version = temp[1];
conf = temp[2];
if (version != lastvers)
printf "%s%s", (lastvers != "" ? "\n| " : ""), version;
# Hack: if CONF is foo.*/bar and LASTCONF was foo.*,
# then we can omit the foo.*/bar since foo.* matches already.
# Note we don't update LASTCONF, so foo.*/baz next time will match too.
else if ((slash = index(conf, ".*/")) > 0 && \
substr(conf, 1, slash + 2 - 1) == lastconf)
continue;
printf " %s", conf;
lastvers = version;
lastconf = conf;
}
print "";
outpipe = "sort";