From: Wouter Wijngaards Date: Tue, 9 Feb 2010 15:21:34 +0000 (+0000) Subject: include math.h for prototypes X-Git-Tag: release-1.4.2~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23077d5a2b96a99a93e19e300693d77fc44ecbee;p=thirdparty%2Funbound.git include math.h for prototypes git-svn-id: file:///svn/unbound/trunk@1978 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index 3cd711069..737315d80 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,5 +1,6 @@ 9 February 2010: Wouter - Fixup in compat snprintf routine, %f 1.02 and %g support. + - include math.h for testbound test compile portability. 2 February 2010: Wouter - Updated url of IANA itar, interim trust anchor repository, in script. diff --git a/testcode/replay.c b/testcode/replay.c index 03f5781f3..9839ee7d0 100644 --- a/testcode/replay.c +++ b/testcode/replay.c @@ -40,6 +40,8 @@ */ #include "config.h" +/* for strtod prototype */ +#include #include "util/log.h" #include "util/net_help.h" #include "util/config_file.h"