From e589b330206ac9f5bb1fb1f091f12ef405b898d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 16 Mar 2006 14:42:04 +0000 Subject: [PATCH] Should fix the build. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16817 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/wchar.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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);