diff options
Diffstat (limited to 'src/math/erff.c')
-rw-r--r-- | src/math/erff.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/erff.c b/src/math/erff.c index ed5f3975..86fba5d5 100644 --- a/src/math/erff.c +++ b/src/math/erff.c @@ -181,3 +181,11 @@ float erfcf(float x) } return sign ? 2 - 0x1p-120f : 0x1p-120f*0x1p-120f; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |