diff options
Diffstat (limited to 'src/math/x86_64/sqrtf.c')
-rw-r--r-- | src/math/x86_64/sqrtf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/x86_64/sqrtf.c b/src/math/x86_64/sqrtf.c index 720baec6..65c3997b 100644 --- a/src/math/x86_64/sqrtf.c +++ b/src/math/x86_64/sqrtf.c @@ -5,3 +5,11 @@ float sqrtf(float x) __asm__ ("sqrtss %1, %0" : "=x"(x) : "x"(x)); return x; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |