From: Linux Karlsson Date: Fri, 29 Oct 2010 18:41:29 +0000 (-0700) Subject: Fixed required include on Solaris X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9cbb8c3ecbee8fad039797f433baefaa94142242;p=thirdparty%2Fntp.git Fixed required include on Solaris bk: 4ccb1559ePRgrV4FOIbyQ6cCxeD3wA --- diff --git a/tests/libntp/buftvtots.cpp b/tests/libntp/buftvtots.cpp index 09c9e709d6..bb8a32d35b 100644 --- a/tests/libntp/buftvtots.cpp +++ b/tests/libntp/buftvtots.cpp @@ -4,6 +4,9 @@ extern "C" { #include "ntp_unixtime.h" }; +// Required for Solaris. +#include + class buftvtotsTest : public lfptest { }; diff --git a/tests/libntp/tvtots.cpp b/tests/libntp/tvtots.cpp index 06a4323382..6cc84c86b5 100644 --- a/tests/libntp/tvtots.cpp +++ b/tests/libntp/tvtots.cpp @@ -4,6 +4,9 @@ extern "C" { #include "ntp_unixtime.h" }; +// Required on Solaris for ldexp. +#include + class tvtotsTest : public lfptest { };