From: Linux Karlsson Date: Fri, 29 Oct 2010 18:41:29 +0000 (-0700) Subject: Fixed required include on Solaris X-Git-Tag: NTP_4_2_7P75~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f322403512a074c661055da9afe1807ad83e6dbd;p=thirdparty%2Fntp.git Fixed required include on Solaris bk: 4ccb1559ePRgrV4FOIbyQ6cCxeD3wA --- diff --git a/tests/libntp/buftvtots.cpp b/tests/libntp/buftvtots.cpp index 09c9e709d..bb8a32d35 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 06a432338..6cc84c86b 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 { };