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