From: Bruno Haible Date: Sat, 24 Jan 2009 14:01:21 +0000 (+0100) Subject: Adjust specification. X-Git-Tag: v0.1~6408 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=f6d56149e69a8d93bafec0118f2e0ec58824e09e;p=gnulib.git Adjust specification. --- diff --git a/ChangeLog b/ChangeLog index 140690932..83dbd4f2a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2009-01-24 Bruno Haible + * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification. + Reported by Eric Blake. + +2009-01-24 Bruno Haible + * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC, set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11. Reported by Gary V. Vaughan . diff --git a/lib/c-strtod.h b/lib/c-strtod.h index 4458d6767..2b3f84735 100644 --- a/lib/c-strtod.h +++ b/lib/c-strtod.h @@ -30,8 +30,8 @@ - In case of underflow, return a value very near to 0 and set errno to ERANGE. - If the string does not start with a number at all, return 0 (and recall - that if ENDPTR != NULL, *ENDPTR is set to NPTR). - - In case of other error, return 0 and set errno, for example to EINVAL - or ENOMEM. */ + that if ENDPTR != NULL, *ENDPTR is set to NPTR), and maybe set errno to + EINVAL. + - In case of other error, return 0 and set errno, for example to ENOMEM. */ extern double c_strtod (char const *nptr, char **endptr); extern long double c_strtold (char const *nptr, char **endptr);