diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-12-06 17:10:20 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-12-06 17:10:20 +0000 |
commit | d0ce853bc071aec4f6e81de08529c36e328469dc (patch) | |
tree | bc1d3b541bda8f9afc2ec3869ffcaec3a1bd0677 | |
parent | f4abea70d987e43ffe5234c22ba03213434fd0e4 (diff) | |
download | glibc-d0ce853bc071aec4f6e81de08529c36e328469dc.tar.gz glibc-d0ce853bc071aec4f6e81de08529c36e328469dc.tar.xz glibc-d0ce853bc071aec4f6e81de08529c36e328469dc.zip |
(perror): Conditionalize code dealing with wide-oriented streams on USE_IN_LIBIO.
-rw-r--r-- | stdio-common/perror.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stdio-common/perror.c b/stdio-common/perror.c index 239d43edc6..77a1d9fe46 100644 --- a/stdio-common/perror.c +++ b/stdio-common/perror.c @@ -39,8 +39,10 @@ perror (const char *s) errstring = __strerror_r (errnum, buf, sizeof buf); +#ifdef USE_IN_LIBIO if (fwide (stderr, 0) > 0) (void) fwprintf (stderr, L"%s%s%s\n", s, colon, errstring); else +#endif (void) fprintf (stderr, "%s%s%s\n", s, colon, errstring); } |