diff options
Diffstat (limited to 'assert')
-rw-r--r-- | assert/assert-perr.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/assert/assert-perr.c b/assert/assert-perr.c index 246727ee94..cdc07b56f9 100644 --- a/assert/assert-perr.c +++ b/assert/assert-perr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -22,10 +22,6 @@ #include <sysdep.h> -/* This is the internal function we use to generate the error string. */ -extern char *_strerror_internal __P ((int, char *, size_t)); - - extern const char *__assert_program_name; /* In assert.c. */ /* This function, when passed an error number, a filename, and a line @@ -53,7 +49,7 @@ __assert_perror_fail (int errnum, __assert_program_name ? ": " : "", file, line, function ? function : "", function ? ": " : "", - _strerror_internal (errnum, errbuf, sizeof errbuf)); + __strerror_r (errnum, errbuf, sizeof errbuf)); (void) fflush (stderr); abort (); |