diff options
Diffstat (limited to 'src/math/log1p.c')
-rw-r--r-- | src/math/log1p.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/log1p.c b/src/math/log1p.c index 00971349..67e7e403 100644 --- a/src/math/log1p.c +++ b/src/math/log1p.c @@ -120,3 +120,11 @@ double log1p(double x) dk = k; return s*(hfsq+R) + (dk*ln2_lo+c) - hfsq + f + dk*ln2_hi; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |