aboutsummaryrefslogtreecommitdiff
path: root/src/math/x86_64/remquol.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/x86_64/remquol.c')
-rw-r--r--src/math/x86_64/remquol.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/x86_64/remquol.c b/src/math/x86_64/remquol.c
index 60eef089..d1c69002 100644
--- a/src/math/x86_64/remquol.c
+++ b/src/math/x86_64/remquol.c
@@ -30,3 +30,11 @@ long double remquol(long double x, long double y, int *quo)
*quo = (cx[9]^cy[9]) < 0 ? -qbits : qbits;
return t;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif