From 3d35ef8670fd14e05134e75daa58c2773bbd754f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 10 Oct 1996 04:18:05 +0000 Subject: [PATCH] . --- lib/strtod.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/lib/strtod.c b/lib/strtod.c index e2ddaa6cd8..69c57a4df1 100644 --- a/lib/strtod.c +++ b/lib/strtod.c @@ -14,8 +14,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifdef HAVE_CONFIG_H -#include +#if HAVE_CONFIG_H +# include #endif #include @@ -26,21 +26,21 @@ extern int errno; #include #include -#ifdef HAVE_FLOAT_H -#include +#if HAVE_FLOAT_H +# include #else -#define DBL_MAX 1.7976931348623159e+308 -#define DBL_MIN 2.2250738585072010e-308 +# define DBL_MAX 1.7976931348623159e+308 +# define DBL_MIN 2.2250738585072010e-308 #endif #if STDC_HEADERS -#include -#include +# include +# include #else -#define NULL 0 -#ifndef HUGE_VAL -#define HUGE_VAL HUGE -#endif +# define NULL 0 +# ifndef HUGE_VAL +# define HUGE_VAL HUGE +# endif #endif /* Convert NPTR to a double. If ENDPTR is not NULL, a pointer to the -- 2.47.2