diff options
Diffstat (limited to 'src/math/x86_64/fma.c')
-rw-r--r-- | src/math/x86_64/fma.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/x86_64/fma.c b/src/math/x86_64/fma.c index 4dd53f2a..6e7fd138 100644 --- a/src/math/x86_64/fma.c +++ b/src/math/x86_64/fma.c @@ -21,3 +21,11 @@ double fma(double x, double y, double z) #include "../fma.c" #endif + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |