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