* include/_mingw.h (threadlocalinfostruct, threadmbinfostruct,

*pthreadlocinfo, *pthreadmbcinfo, _locale_tstruct, *_locale_t): Declare.
This commit is contained in:
Earnie Boyd
2012-08-03 20:06:27 +00:00
parent eb9dc9d068
commit a451d291c5
3 changed files with 27 additions and 11 deletions

View File

@ -290,4 +290,14 @@ allow GCC to optimize away some EH unwind code, at least in DW2 case. */
# endif
#endif
struct threadlocalinfostruct;
struct threadmbinfostruct;
typedef struct threadlocalinfostruct *pthreadlocinfo;
typedef struct threadmbcinfostruct *pthreadmbcinfo;
typedef struct localeinfo_struct {
pthreadlocinfo locinfo;
pthreadmbcinfo mbcinfo;
} _locale_tstruct, *_locale_t;
#endif /* __MINGW_H */