diff options
Diffstat (limited to 'src/math/__math_oflow.c')
-rw-r--r-- | src/math/__math_oflow.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/__math_oflow.c b/src/math/__math_oflow.c index c85dbf98..07117f68 100644 --- a/src/math/__math_oflow.c +++ b/src/math/__math_oflow.c @@ -4,3 +4,11 @@ double __math_oflow(uint32_t sign) { return __math_xflow(sign, 0x1p769); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |