2011-05-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>

* include/stdlib.h (strtod): Remove possible static declaration to resolve
        issue with gcc.

        Thanks to Tobias Burnus for the report.
This commit is contained in:
Chris Sutcliffe 2011-05-23 03:43:30 +00:00
parent ec05c53dde
commit 6b58abe537
2 changed files with 7 additions and 5 deletions

View File

@ -1,3 +1,10 @@
2011-05-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* include/stdlib.h (strtod): Remove possible static declaration to resolve
issue with gcc.
Thanks to Tobias Burnus for the report.
2011-05-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* include/stdlib.h (_rotl, _lrotl, _rotr, _lrotr): Resolve conflict with gcc

View File

@ -310,11 +310,6 @@ _CRTIMP long __cdecl __MINGW_NOTHROW _wtol (const wchar_t *);
#endif
#if !defined __NO_ISOCEXT /* in libmingwex.a */
double __cdecl __MINGW_NOTHROW __strtod (const char*, char**);
#ifdef __cplusplus
/* We require a function with external linkage. */
#else
static
#endif /* Not __cplusplus */
__inline__ double __cdecl __MINGW_NOTHROW
strtod (const char* __restrict__ __nptr, char** __restrict__ __endptr)
{