From adc106840cc910d707a5d2ea3768f2914dad62e9 Mon Sep 17 00:00:00 2001 From: "Tim J. Robbins" Date: Mon, 23 Sep 2002 11:31:18 +0000 Subject: [PATCH] The character argument for __ungetwc() should be wint_t instead of wchar_t. --- lib/libc/stdio/local.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/stdio/local.h b/lib/libc/stdio/local.h index 290040b238b..5bd21a3923d 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);