diff options
Diffstat (limited to 'misc')
-rw-r--r-- | misc/error.c | 6 | ||||
-rw-r--r-- | misc/syslog.c | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/misc/error.c b/misc/error.c index aa0d8bbea7..9d01066169 100644 --- a/misc/error.c +++ b/misc/error.c @@ -1,5 +1,5 @@ /* Error handler for noninteractive utilities - Copyright (C) 1990-1998, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1990-1998, 2000, 2001, 2002 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. @@ -88,7 +88,9 @@ extern void __error_at_line (int status, int errnum, const char *file_name, # ifdef USE_IN_LIBIO # include <libio/iolibio.h> -# define fflush(s) _IO_fflush (s) +# define fflush(s) INTUSE(_IO_fflush) (s) +# undef putc +# define putc(c, fp) INTUSE(_IO_putc) (c, fp) # endif #else /* not _LIBC */ diff --git a/misc/syslog.c b/misc/syslog.c index a27eb2ab92..de5737d235 100644 --- a/misc/syslog.c +++ b/misc/syslog.c @@ -56,7 +56,7 @@ static char sccsid[] = "@(#)syslog.c 8.4 (Berkeley) 3/18/94"; #ifdef USE_IN_LIBIO # include <libio/iolibio.h> -# define ftell(s) _IO_ftell (s) +# define ftell(s) INTUSE(_IO_ftell) (s) #endif static int LogType = SOCK_DGRAM; /* type of socket connection */ |