diff options
Diffstat (limited to 'src/math/__math_divzero.c')
-rw-r--r-- | src/math/__math_divzero.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/__math_divzero.c b/src/math/__math_divzero.c index 59d21350..efc85c14 100644 --- a/src/math/__math_divzero.c +++ b/src/math/__math_divzero.c @@ -4,3 +4,11 @@ double __math_divzero(uint32_t sign) { return fp_barrier(sign ? -1.0 : 1.0) / 0.0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |