diff options
Diffstat (limited to 'src/math/logbf.c')
-rw-r--r-- | src/math/logbf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/logbf.c b/src/math/logbf.c index a0a0b5ed..4633a503 100644 --- a/src/math/logbf.c +++ b/src/math/logbf.c @@ -8,3 +8,11 @@ float logbf(float x) return -1/(x*x); return ilogbf(x); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |