mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-28 15:28:30 +00:00
Avoid linker conflicts on DescribeFoo symbols
These symbols belong to the user. It caused a confusing error for Blink.
This commit is contained in:
parent
38cc4b3c68
commit
bb06230f1e
120 changed files with 346 additions and 347 deletions
|
@ -306,7 +306,7 @@ textstartup void __printargs(const char *prologue) {
|
|||
if (i && (u.pfds[i].revents & POLLNVAL))
|
||||
continue;
|
||||
PRINT(" ☼ %d (revents=%#hx fcntl(F_GETFL)=%s isatty()=%hhhd)", i,
|
||||
u.pfds[i].revents, (DescribeOpenFlags)(oflagbuf, fcntl(i, F_GETFL)),
|
||||
u.pfds[i].revents, _DescribeOpenFlags(oflagbuf, fcntl(i, F_GETFL)),
|
||||
isatty(i));
|
||||
}
|
||||
} else {
|
||||
|
@ -375,7 +375,7 @@ textstartup void __printargs(const char *prologue) {
|
|||
rlim.rlim_cur = -1;
|
||||
if (rlim.rlim_max == RLIM_INFINITY)
|
||||
rlim.rlim_max = -1;
|
||||
PRINT(" ☼ %-20s %,16ld %,16ld", (DescribeRlimitName)(buf, i),
|
||||
PRINT(" ☼ %-20s %,16ld %,16ld", _DescribeRlimitName(buf, i),
|
||||
rlim.rlim_cur, rlim.rlim_max);
|
||||
gotsome = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue