changeset 11212:8233c503d99e

strtod: avoid C99 decl-after-statement * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration. Signed-off-by: Eric Blake <ebb9@byu.net>
author Gary V. Vaughan <gary@gnu.org>
date Wed, 25 Feb 2009 06:00:43 -0700
parents 3070459611d3
children f53679c6db31
files ChangeLog m4/strtod.m4
diffstat 2 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-25  Gary V. Vaughan  <gary@gnu.org>
+
+	strtod: avoid C99 decl-after-statement
+	* m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
+
 2009-02-24  Eric Blake  <ebb9@byu.net>
 
 	strtod: detect HP-UX 11.31 bug
--- 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;
   }