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

Avoid local PLT reference in __nptl_main.

This commit is contained in:
Roland McGrath
2014-10-21 10:18:17 -07:00
parent 6ab1d1ea96
commit f05e73f660
2 changed files with 5 additions and 1 deletions

View File

@ -38,6 +38,6 @@ __attribute__ ((noreturn))
void
__nptl_main (void)
{
__write (STDOUT_FILENO, (const char *) banner, sizeof banner - 1);
__libc_write (STDOUT_FILENO, banner, sizeof banner - 1);
_exit (0);
}