xref: /NextBSD/contrib/ntp/tests/libntp/lfptest.h (revision 84d351007654069f9643c8e4b4802a7f5f08ee42)
1 #ifndef NTP_TESTS_LFPTEST_H
2 #define NTP_TESTS_LFPTEST_H
3 
4 #include "config.h"
5 #include "ntp_fp.h"
6 
7 
8 static const int32 HALF = -2147483647L - 1L;
9 static const int32 HALF_PROMILLE_UP = 2147484; // slightly more than 0.0005
10 static const int32 HALF_PROMILLE_DOWN = 2147483; // slightly less than 0.0005
11 static const int32 QUARTER = 1073741824L;
12 static const int32 QUARTER_PROMILLE_APPRX = 1073742L;
13 
14 int IsEqual(const l_fp expected, const l_fp actual);
15 
16 #endif
17