diff --git a/headers/posix/wchar.h b/headers/posix/wchar.h index 7c11f31526..e3c9188944 100644 --- a/headers/posix/wchar.h +++ b/headers/posix/wchar.h @@ -8,14 +8,15 @@ #define _WCHAR_H #include +#include #define _WINT_T typedef unsigned int wint_t; typedef int wctype_t; typedef struct { - int __count; - wint_t __value; + int __count; + wint_t __value; } mbstate_t; #include @@ -23,7 +24,7 @@ typedef struct { extern wint_t fgetwc(FILE *); extern wchar_t *fgetws(wchar_t *, int, FILE *); extern wint_t fputwc(wchar_t, FILE *); -extern int fputws(const wchar_t *, FILE *); +extern int fputws(const wchar_t *, FILE *); extern wint_t getwc(FILE *); extern wint_t getwchar(void);