diff options
author | tjr <tjr@FreeBSD.org> | 2002-09-23 11:31:18 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2002-09-23 11:31:18 +0000 |
commit | 043dfd402f23f3170df53cfd02593ab72c377eff (patch) | |
tree | 7518e8393136435963be019521a08a7075ed2752 /lib/libc/stdio | |
parent | f3b0200748c9e28aabdedeaa20d6ff3c4e7f0303 (diff) | |
download | FreeBSD-src-043dfd402f23f3170df53cfd02593ab72c377eff.zip FreeBSD-src-043dfd402f23f3170df53cfd02593ab72c377eff.tar.gz |
The character argument for __ungetwc() should be wint_t instead of wchar_t.
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/local.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdio/local.h b/lib/libc/stdio/local.h index 290040b..5bd21a39 100644 --- a/lib/libc/stdio/local.h +++ b/lib/libc/stdio/local.h @@ -71,7 +71,7 @@ extern int _fwalk(int (*)(FILE *)); extern int __swsetup(FILE *); extern int __sflags(const char *, int *); extern int __ungetc(int, FILE *); -extern wint_t __ungetwc(wchar_t, FILE *); +extern wint_t __ungetwc(wint_t, FILE *); extern int __vfprintf(FILE *, const char *, __va_list); extern int __vfwprintf(FILE *, const wchar_t *, __va_list); |