summaryrefslogtreecommitdiff
path: root/lib/strtod.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-09-13 22:01:20 +0000
committerJim Meyering <jim@meyering.net>2003-09-13 22:01:20 +0000
commitdce9582d2ca06a6c50165014b21d95654541e8da (patch)
treea44364d0664dbc9f44ba1ed449b6e1fe9c1a7808 /lib/strtod.c
parent2be39af412edc53d4ef09097949550697c270173 (diff)
downloadcoreutils-dce9582d2ca06a6c50165014b21d95654541e8da.tar.xz
Update from gnulib.
Diffstat (limited to 'lib/strtod.c')
-rw-r--r--lib/strtod.c21
1 files changed, 4 insertions, 17 deletions
diff --git a/lib/strtod.c b/lib/strtod.c
index 10edb5cfe..161f97a7b 100644
--- a/lib/strtod.c
+++ b/lib/strtod.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1992, 1997, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1992, 1997, 1999, 2003 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -37,22 +37,9 @@ extern int errno;
#include <math.h>
-#if HAVE_FLOAT_H
-# include <float.h>
-#else
-# define DBL_MAX 1.7976931348623159e+308
-# define DBL_MIN 2.2250738585072010e-308
-#endif
-
-#if STDC_HEADERS
-# include <stdlib.h>
-# include <string.h>
-#else
-# define NULL 0
-# ifndef HUGE_VAL
-# define HUGE_VAL HUGE
-# endif
-#endif
+#include <float.h>
+#include <stdlib.h>
+#include <string.h>
/* Convert NPTR to a double. If ENDPTR is not NULL, a pointer to the
character after the last one used in the number is put in *ENDPTR. */