diff options
Diffstat (limited to 'src/math/fmal.c')
-rw-r--r-- | src/math/fmal.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/fmal.c b/src/math/fmal.c index 4506aac6..375864c1 100644 --- a/src/math/fmal.c +++ b/src/math/fmal.c @@ -291,3 +291,11 @@ long double fmal(long double x, long double y, long double z) return add_and_denormalize(r.hi, adj, spread); } #endif + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |