diff options
Diffstat (limited to 'src/math/__math_invalid.c')
-rw-r--r-- | src/math/__math_invalid.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/__math_invalid.c b/src/math/__math_invalid.c index 17740490..1c46c1b9 100644 --- a/src/math/__math_invalid.c +++ b/src/math/__math_invalid.c @@ -4,3 +4,11 @@ double __math_invalid(double x) { return (x - x) / (x - x); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |