diff options
Diffstat (limited to 'misc')
-rw-r--r-- | misc/error.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/error.c b/misc/error.c index cb55c2f0d8..690b5bdc99 100644 --- a/misc/error.c +++ b/misc/error.c @@ -1,5 +1,5 @@ /* Error handler for noninteractive utilities - Copyright (C) 1990,91,92,93,94,95,96,97,98 Free Software Foundation, Inc. + Copyright (C) 1990-1998, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Its master source is NOT part of the C library, however. The master source lives in /gd/gnu/lib. @@ -156,7 +156,7 @@ error (status, errnum, message, va_alist) ++error_message_count; if (errnum) { -#if defined HAVE_STRERROR_R || defined _LIBC +#if defined HAVE_STRERROR_R || _LIBC char errbuf[1024]; fprintf (stderr, ": %s", __strerror_r (errnum, errbuf, sizeof errbuf)); #else @@ -231,7 +231,7 @@ error_at_line (status, errnum, file_name, line_number, message, va_alist) ++error_message_count; if (errnum) { -#if defined HAVE_STRERROR_R || defined _LIBC +#if defined HAVE_STRERROR_R || _LIBC char errbuf[1024]; fprintf (stderr, ": %s", __strerror_r (errnum, errbuf, sizeof errbuf)); #else |