From e1caf0011e32fc3cb33f97d711cbebe0d5fb79bd Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Thu, 8 Dec 2005 19:30:10 +0000 Subject: Use internal \*_strerror_r --- libc/stdio/perror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/stdio/perror.c') diff --git a/libc/stdio/perror.c b/libc/stdio/perror.c index d69ccd5c3..9edcf4efb 100644 --- a/libc/stdio/perror.c +++ b/libc/stdio/perror.c @@ -30,7 +30,7 @@ void attribute_hidden __perror(register const char *s) { char buf[64]; fprintf(stderr, "%s%s%s\n", s, sep, - __glibc_strerror_r(errno, buf, sizeof(buf))); + __glibc_strerror_r_internal(errno, buf, sizeof(buf))); } #endif } -- cgit v1.2.3