2009-12-03 Craig Howland <howland@LGSInnovations.com>

* libc/stdlib/strtod.c:  Correct "NO_REENT" to "_REENT_ONLY".
        * libc/stdlib/wcstod.c:  Ditto.
        * libc/stdlib/dtoastub.c:  Ditto.
This commit is contained in:
Jeff Johnston 2009-12-03 16:11:27 +00:00
parent 2bc3381e5c
commit df8d921e12
4 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2009-12-03 Craig Howland <howland@LGSInnovations.com>
* libc/stdlib/strtod.c: Correct "NO_REENT" to "_REENT_ONLY".
* libc/stdlib/wcstod.c: Ditto.
* libc/stdlib/dtoastub.c: Ditto.
2009-11-23 Corinna Vinschen <corinna@vinschen.de>
Use NetBSD fix for CVE-2009-0689 security vulnerability.

View File

@ -5,7 +5,7 @@
/* Nothing in newlib actually *calls* dtoa, they all call _dtoa_r, so this
is a safe way of providing it to the user. */
#ifndef NO_REENT
#ifndef _REENT_ONLY
char *
_DEFUN (__dtoa,

View File

@ -1164,7 +1164,7 @@ _DEFUN (_strtod_r, (ptr, s00, se),
return sign ? -dval(rv) : dval(rv);
}
#ifndef NO_REENT
#ifndef _REENT_ONLY
double
_DEFUN (strtod, (s00, se),

View File

@ -207,7 +207,7 @@ _DEFUN (_wcstof_r, (ptr, nptr, endptr),
return (float)retval;
}
#ifndef NO_REENT
#ifndef _REENT_ONLY
double
_DEFUN (wcstod, (nptr, endptr),