2008-05-06 Ramiro Polla <ramiro@lisha.ufsc.br>

* mingwex/gdtoa/strtodnrp.c: Remove alias from strtod to __strtod.
        * include/stdlib.h: Define strtod to __strtod when __NO_ISOCEXT is not set.
This commit is contained in:
Chris Sutcliffe
2008-05-07 02:35:16 +00:00
parent edce6d8546
commit a8e45d3968
3 changed files with 9 additions and 5 deletions

View File

@ -307,11 +307,13 @@ _CRTIMP long __cdecl __MINGW_NOTHROW atol (const char*);
_CRTIMP int __cdecl __MINGW_NOTHROW _wtoi (const wchar_t *);
_CRTIMP long __cdecl __MINGW_NOTHROW _wtol (const wchar_t *);
#endif
_CRTIMP double __cdecl __MINGW_NOTHROW _strtod (const char*, char**);
#if !defined __NO_ISOCEXT /* in libmingwex.a */
double __cdecl __MINGW_NOTHROW strtod (const char*, char**);
double __cdecl __MINGW_NOTHROW __strtod (const char*, char**);
#define strtod __strtod
float __cdecl __MINGW_NOTHROW strtof (const char * __restrict__, char ** __restrict__);
long double __cdecl __MINGW_NOTHROW strtold (const char * __restrict__, char ** __restrict__);
#else
_CRTIMP double __cdecl __MINGW_NOTHROW strtod (const char*, char**);
#endif /* __NO_ISOCEXT */
_CRTIMP long __cdecl __MINGW_NOTHROW strtol (const char*, char**, int);