diff options
Diffstat (limited to 'src/math/__math_uflowf.c')
-rw-r--r-- | src/math/__math_uflowf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/__math_uflowf.c b/src/math/__math_uflowf.c index 94d50f2b..3da4015d 100644 --- a/src/math/__math_uflowf.c +++ b/src/math/__math_uflowf.c @@ -4,3 +4,11 @@ float __math_uflowf(uint32_t sign) { return __math_xflowf(sign, 0x1p-95f); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |