Patch from kaliber to a the glibc strtold implentation.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38710 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Scott McCreary 2010-09-18 16:42:59 +00:00
parent 8e19103a0f
commit e86eb77b1b
4 changed files with 34 additions and 15 deletions

View File

@ -88,6 +88,7 @@ extern unsigned int atoui(const char *string);
extern unsigned long atoul(const char *string);
extern double strtod(const char *string, char **end);
extern long double strtold(const char *string, char **end);
extern float strtof(const char *string, char **end);
extern long strtol(const char *string, char **end, int base);
extern unsigned long strtoul(const char *string, char **end, int base);

View File

@ -36,6 +36,7 @@ MergeObject posix_gnu_stdlib.o :
srand48.c
srand48_r.c
strtod.c
strtold.c
strtof.c
wcstombs.c
wctomb.c

View File

@ -1574,18 +1574,3 @@ STRTOF (nptr, endptr LOCALE_PARAM)
{
return INTERNAL (STRTOF) (nptr, endptr, 0 LOCALE_PARAM);
}
// XXX this is not correct
long double __strtold_internal(const char *number, char **_end, int group);
long double
#ifdef weak_function
weak_function
#endif
__strtold_internal(const char *number, char **_end, int group)
{
return __strtod_internal(number, _end, group);
}

View File

@ -0,0 +1,32 @@
/* Copyright (C) 1999 Free Software Foundation, Inc.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the GNU C Library; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#include <math.h>
#include <stdlib.h>
/* There is no `long double' type, use the `double' implementations. */
long double
__strtold_internal (const char *nptr, char **endptr, int group)
{
return __strtod_internal (nptr, endptr, group);
}
long double
strtold (const char *nptr, char **endptr)
{
return __strtod_internal (nptr, endptr, 0);
}