2009-06-16 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>

* include/stdlib.h (_wtof): Define.
This commit is contained in:
Chris Sutcliffe 2009-06-17 22:01:36 +00:00
parent a2c3c5dab4
commit 339dde8fe5
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2009-06-16 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* include/stdlib.h (_wtof): Define.
2009-04-11 Danny Smith <dannsymith@users.sourceforge.net>
* include/stdint.h (int_fast8_t): Specify as signed char.

View File

@ -304,6 +304,7 @@ _CRTIMP double __cdecl __MINGW_NOTHROW atof (const char*);
_CRTIMP int __cdecl __MINGW_NOTHROW atoi (const char*);
_CRTIMP long __cdecl __MINGW_NOTHROW atol (const char*);
#if !defined (__STRICT_ANSI__)
_CRTIMP double __cdecl __MINGW_NOTHROW _wtof (const wchar_t *);
_CRTIMP int __cdecl __MINGW_NOTHROW _wtoi (const wchar_t *);
_CRTIMP long __cdecl __MINGW_NOTHROW _wtol (const wchar_t *);
#endif