aboutsummaryrefslogtreecommitdiff
path: root/src/math/x86_64/sqrtl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/x86_64/sqrtl.c')
-rw-r--r--src/math/x86_64/sqrtl.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/x86_64/sqrtl.c b/src/math/x86_64/sqrtl.c
index 864cfcc4..81edf51d 100644
--- a/src/math/x86_64/sqrtl.c
+++ b/src/math/x86_64/sqrtl.c
@@ -5,3 +5,11 @@ long double sqrtl(long double x)
__asm__ ("fsqrt" : "+t"(x));
return x;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif