From c3d6c951998a1687ad462bdd5e9bcbb691e1db8a Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 9 Apr 1998 21:07:26 +0000 Subject: Update. * stdlib/strtof_l.c: Declare ____strtoull_l_internal. * stdlib/strtod_l.c: Likewise. * stdlib/strtold_l.c: Likewise. * intl/gettextP.h [_LIBC] (SWAP): Use byteswap.h macros. --- stdlib/strtod_l.c | 4 +++- stdlib/strtof_l.c | 4 +++- stdlib/strtold_l.c | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) (limited to 'stdlib') diff --git a/stdlib/strtod_l.c b/stdlib/strtod_l.c index 451168f..2f40a30 100644 --- a/stdlib/strtod_l.c +++ b/stdlib/strtod_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to float value, using given locale. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. @@ -23,5 +23,7 @@ #include extern double ____strtod_l_internal (const char *, char **, int, __locale_t); +extern unsigned long long int ____strtoull_l_internal (const char *, char **, + int, int, __locale_t); #include diff --git a/stdlib/strtof_l.c b/stdlib/strtof_l.c index 67f1360..6e3f960 100644 --- a/stdlib/strtof_l.c +++ b/stdlib/strtof_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to float value, using given locale. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. @@ -23,5 +23,7 @@ #include extern float ____strtof_l_internal (const char *, char **, int, __locale_t); +extern unsigned long long int ____strtoull_l_internal (const char *, char **, + int, int, __locale_t); #include diff --git a/stdlib/strtold_l.c b/stdlib/strtold_l.c index 8f2fe32..2a1f1f5 100644 --- a/stdlib/strtold_l.c +++ b/stdlib/strtold_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to float value, using given locale. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. @@ -24,5 +24,7 @@ extern long double ____strtold_l_internal (const char *, char **, int, __locale_t); +extern unsigned long long int ____strtoull_l_internal (const char *, char **, + int, int, __locale_t); #include -- cgit v1.1