include math.h for prototypes

git-svn-id: file:///svn/unbound/trunk@1978 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2010-02-09 15:21:34 +00:00
parent 003aebc9fe
commit 23077d5a2b
2 changed files with 3 additions and 0 deletions

View file

@ -1,5 +1,6 @@
9 February 2010: Wouter 9 February 2010: Wouter
- Fixup in compat snprintf routine, %f 1.02 and %g support. - Fixup in compat snprintf routine, %f 1.02 and %g support.
- include math.h for testbound test compile portability.
2 February 2010: Wouter 2 February 2010: Wouter
- Updated url of IANA itar, interim trust anchor repository, in script. - Updated url of IANA itar, interim trust anchor repository, in script.

View file

@ -40,6 +40,8 @@
*/ */
#include "config.h" #include "config.h"
/* for strtod prototype */
#include <math.h>
#include "util/log.h" #include "util/log.h"
#include "util/net_help.h" #include "util/net_help.h"
#include "util/config_file.h" #include "util/config_file.h"