From e732d3527f0e59b8a912fefd00b8dd9f489e5af0 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 17 Jul 2006 19:38:46 +0200 Subject: [PATCH] strings/strtod.c : Ensure the definition of "EOVERFLOW" is available. In 5.0, this is already solved, so that is a null-merge ("ul"). strings/strtod.c: This file needs the definition of "EOVERFLOW", which is on some platforms (Windows, OpenBSD) provided only by "my_base.h". As this in turn includes "my_global.h", the include file name can be changed. --- strings/strtod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strings/strtod.c b/strings/strtod.c index da1b4f4baa6..1663cd61b78 100644 --- a/strings/strtod.c +++ b/strings/strtod.c @@ -26,7 +26,7 @@ */ -#include /* Includes errno.h */ +#include /* Includes errno.h */ #include #define MAX_DBL_EXP 308