strtod: avoid C99 decl-after-statement
authorGary V. Vaughan <gary@gnu.org>
Wed, 25 Feb 2009 13:00:43 +0000 (06:00 -0700)
committerEric Blake <ebb9@byu.net>
Wed, 25 Feb 2009 13:00:43 +0000 (06:00 -0700)
* m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.

Signed-off-by: Eric Blake <ebb9@byu.net>
ChangeLog
m4/strtod.m4

index 2338272..3c3521a 100644 (file)
--- 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
index 1f301c2..9769436 100644 (file)
@@ -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 @@ numeric_equal (double x, double y)
        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;
   }