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