* m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
Signed-off-by: Eric Blake <ebb9@byu.net>
+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
-# 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,
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;
}