X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Ferror.c;h=c78b6cffb94ad809d94ffd44f05b3e342e9f650f;hb=1380e0f92ddac41ee242a1f57cd2de871dbd892b;hp=676ce1d685132f46217969ea4746cc28711da462;hpb=3e6339641eedb691ab9a8f2435b972aac725ea5c;p=gnulib.git diff --git a/lib/error.c b/lib/error.c index 676ce1d68..c78b6cffb 100644 --- a/lib/error.c +++ b/lib/error.c @@ -1,5 +1,5 @@ /* Error handler for noninteractive utilities - Copyright (C) 1990-2000 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. @@ -26,6 +26,9 @@ #endif #include +#if HAVE_LIBINTL_H +# include +#endif #if HAVE_VPRINTF || HAVE_DOPRNT || _LIBC # if __STDC__ @@ -49,6 +52,13 @@ void exit (); #include "error.h" +#ifndef HAVE_DECL_STRERROR_R +"this configure-time declaration test was not run" +#endif +#if !HAVE_DECL_STRERROR_R +char *strerror_r (); +#endif + #ifndef _ # define _(String) String #endif @@ -76,6 +86,11 @@ unsigned int error_message_count; # define error __error # define error_at_line __error_at_line +# ifdef USE_IN_LIBIO +# include +# define fflush(s) _IO_fflush (s) +# endif + #else /* not _LIBC */ /* The calling program should define program_name and set it to the @@ -232,7 +247,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]; # if HAVE_WORKING_STRERROR_R || _LIBC fprintf (stderr, ": %s", __strerror_r (errnum, errbuf, sizeof errbuf));