aboutsummaryrefslogtreecommitdiff
path: root/src/math/x86_64/fmodl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/x86_64/fmodl.c')
-rw-r--r--src/math/x86_64/fmodl.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/x86_64/fmodl.c b/src/math/x86_64/fmodl.c
index 3daeab06..f0127707 100644
--- a/src/math/x86_64/fmodl.c
+++ b/src/math/x86_64/fmodl.c
@@ -7,3 +7,11 @@ long double fmodl(long double x, long double y)
while (fpsr & 0x400);
return x;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif