aboutsummaryrefslogtreecommitdiff
path: root/src/math/hypotf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/hypotf.c')
-rw-r--r--src/math/hypotf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/hypotf.c b/src/math/hypotf.c
index 2fc214b7..603648f5 100644
--- a/src/math/hypotf.c
+++ b/src/math/hypotf.c
@@ -33,3 +33,11 @@ float hypotf(float x, float y)
}
return z*sqrtf((double)x*x + (double)y*y);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif