diff options
| author | Tim J. Robbins <tjr@FreeBSD.org> | 2004-07-20 08:27:27 +0000 |
|---|---|---|
| committer | Tim J. Robbins <tjr@FreeBSD.org> | 2004-07-20 08:27:27 +0000 |
| commit | f9ceea9bf17bc8d7b0020c409743f162c3c5eebd (patch) | |
| tree | 7c7db31d3361d73eb1f35c4a144266372f699890 /lib/libc/stdio/ungetwc.c | |
| parent | efd0e5f49e2e41e65ab7c12809bf7e4f99a1af4d (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdio/ungetwc.c')
| -rw-r--r-- | lib/libc/stdio/ungetwc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/ungetwc.c b/lib/libc/stdio/ungetwc.c index 28f873c53b45..bae2c3ebcea4 100644 --- a/lib/libc/stdio/ungetwc.c +++ b/lib/libc/stdio/ungetwc.c @@ -35,6 +35,7 @@ __FBSDID("$FreeBSD$"); #include "un-namespace.h" #include "libc_private.h" #include "local.h" +#include "mblocal.h" /* * Non-MT-safe version. @@ -47,7 +48,7 @@ __ungetwc(wint_t wc, FILE *fp) if (wc == WEOF) return (WEOF); - if ((len = wcrtomb(buf, wc, &fp->_extra->mbstate)) == (size_t)-1) { + if ((len = __wcrtomb(buf, wc, &fp->_extra->mbstate)) == (size_t)-1) { fp->_flags |= __SERR; return (WEOF); } |
