diff options
Diffstat (limited to 'src/math/log2.c')
-rw-r--r-- | src/math/log2.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/log2.c b/src/math/log2.c index 1276ed4e..f665362d 100644 --- a/src/math/log2.c +++ b/src/math/log2.c @@ -120,3 +120,11 @@ double log2(double x) y = lo + r2 * p + hi; return eval_as_double(y); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |