# HG changeset patch # User Gary V. Vaughan # Date 1235566843 25200 # Node ID 8233c503d99e07801a8081ccb9196f7354ec2992 # Parent 3070459611d3b9c37f7b6f961069d8ec5fb39af7 strtod: avoid C99 decl-after-statement * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration. Signed-off-by: Eric Blake diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-02-25 Gary V. Vaughan + + strtod: avoid C99 decl-after-statement + * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration. + 2009-02-24 Eric Blake strtod: detect HP-UX 11.31 bug diff --git a/m4/strtod.m4 b/m4/strtod.m4 --- a/m4/strtod.m4 +++ b/m4/strtod.m4 @@ -1,4 +1,4 @@ -# strtod.m4 serial 11 +# strtod.m4 serial 12 dnl Copyright (C) 2002-2003, 2006-2009 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -50,8 +50,9 @@ but mistakenly sets errno. */ const char *string = "inf"; char *term; + double value; errno = 0; - double value = strtod (string, &term); + value = strtod (string, &term); if (value != HUGE_VAL || term != (string + 3) || errno) return 1; }