From 173e0ab081b5bb38455785fe19ab4aa3834c1c8a Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Fri, 12 Mar 2021 16:13:26 -0300 Subject: nptl: Remove write from libpthread The libc version is identical and built with same flags. Checked on x86_64-linux-gnu. --- nptl/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nptl/version.c') diff --git a/nptl/version.c b/nptl/version.c index 2d37d76d6a..25e3a0c872 100644 --- a/nptl/version.c +++ b/nptl/version.c @@ -36,6 +36,6 @@ __attribute__ ((noreturn)) void __nptl_main (void) { - __libc_write (STDOUT_FILENO, banner, sizeof banner - 1); + write (STDOUT_FILENO, banner, sizeof banner - 1); _exit (0); } -- cgit v1.2.1