about summary refs log tree commit diff
path: root/stdio-common/vfprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/vfprintf.c')
-rw-r--r--stdio-common/vfprintf.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c
index e13785f3a3..d8d0f87b0f 100644
--- a/stdio-common/vfprintf.c
+++ b/stdio-common/vfprintf.c
@@ -966,12 +966,8 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap)
 									      \
     LABEL (form_strerror):						      \
       /* Print description of error ERRNO.  */				      \
-      {									      \
-	extern char *_strerror_internal __P ((int, char *buf, size_t));	      \
-									      \
-	string = (char *)						      \
-	  _strerror_internal (save_errno, work_buffer, sizeof work_buffer);   \
-      }									      \
+      string =								      \
+	(char *) __strerror_r (save_errno, work_buffer, sizeof work_buffer);  \
       is_long = 0;		/* This is no wide-char string.  */	      \
       goto LABEL (print_string)