MinGW requires that wint_t be defined in stddef.h. In order to accomodate, we

won't define it unless specifically requested via the use of __need_wint_t.

llvm-svn: 105985
This commit is contained in:
Alexis Hunt 2010-06-15 02:36:48 +00:00
parent 4c721bf892
commit 0684e33ba5
1 changed files with 7 additions and 0 deletions

View File

@ -45,6 +45,13 @@ typedef __typeof__(*L"") wchar_t;
#define NULL ((void*)0)
#endif
// Some C libraries expect to see a wint_t here. Others (notably MinGW) will use
// __WINT_TYPE__ directly; accomodate both by requiring __need_wint_t
#if defined(__need_wint_t) && !defined(_WINT_T)
#define _WINT_T
typedef __WINT_TYPE__ wint_t;
#endif
#define offsetof(t, d) __builtin_offsetof(t, d)
#endif /* __STDDEF_H */