From b853e8fa2ef3dafe300b386426012509a50d6175 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 6 Sep 2000 03:37:22 +0000 Subject: (_IO_fwide): If compatibility with glibc 2.0 is needed tst for such an old structure and don't do anything. --- libio/iofwide.c | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/libio/iofwide.c b/libio/iofwide.c index 231cc56c34..2e2854aa62 100644 --- a/libio/iofwide.c +++ b/libio/iofwide.c @@ -36,6 +36,7 @@ # include # include # include +# include #endif @@ -96,9 +97,20 @@ _IO_fwide (fp, mode) /* Normalize the value. */ mode = mode < 0 ? -1 : (mode == 0 ? 0 : 1); - if (mode == 0 || fp->_mode != 0) - /* The caller simply wants to know about the current orientation - or the orientation already has been determined. */ + if (mode == 0) + /* The caller simply wants to know about the current orientation. */ + return fp->_mode; + +#if defined SHARED && defined _LIBC \ + && SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1) + if (__builtin_expect (&_IO_stdin_used == NULL, 0) + && (fp == _IO_stdin || fp == _IO_stdout || fp == _IO_stderr)) + /* This is for a stream in the glibc 2.0 format. */ + return -1; +#endif + + if (fp->_mode != 0) + /* The orientation already has been determined. */ return fp->_mode; /* Set the orientation appropriately. */ -- cgit 1.4.1