diff options
Diffstat (limited to 'src/math/logbl.c')
-rw-r--r-- | src/math/logbl.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/logbl.c b/src/math/logbl.c index 962973a7..b5b7c392 100644 --- a/src/math/logbl.c +++ b/src/math/logbl.c @@ -14,3 +14,11 @@ long double logbl(long double x) return ilogbl(x); } #endif + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |