From 55183f249fff2918c153ca91bc96c8f5d078abfa Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 18 Aug 2001 02:49:41 +0000 Subject: 2001-08-17 Roland McGrath * stdio-common/perror.c (perror) [! USE_IN_LIBIO]: Don't use _IO_fwide. * misc/error.c (error_tail, error, error_at_line) [! USE_IN_LIBIO]: Likewise. --- stdio-common/perror.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'stdio-common/perror.c') diff --git a/stdio-common/perror.c b/stdio-common/perror.c index b6f8d5e13e..a1995e975e 100644 --- a/stdio-common/perror.c +++ b/stdio-common/perror.c @@ -55,9 +55,11 @@ perror_internal (FILE *fp, const char *s) void perror (const char *s) { +#ifdef USE_IN_LIBIO FILE *fp; int fd = -1; + /* The standard says that 'perror' must not change the orientation of the stream. What is supposed to happen when the stream isn't oriented yet? In this case we'll create a new stream which is @@ -84,4 +86,7 @@ perror (const char *s) ((_IO_FILE *) stderr)->_offset = _IO_pos_BAD; } +#else + perror_internal (stderr, s); +#endif } -- cgit 1.4.1