diff options
Diffstat (limited to 'src/math/x86_64/sqrt.c')
-rw-r--r-- | src/math/x86_64/sqrt.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/x86_64/sqrt.c b/src/math/x86_64/sqrt.c index 657e09e3..03f313d6 100644 --- a/src/math/x86_64/sqrt.c +++ b/src/math/x86_64/sqrt.c @@ -5,3 +5,11 @@ double sqrt(double x) __asm__ ("sqrtsd %1, %0" : "=x"(x) : "x"(x)); return x; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |