aboutsummaryrefslogtreecommitdiff
path: root/src/math/atan2f.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/atan2f.c')
-rw-r--r--src/math/atan2f.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/atan2f.c b/src/math/atan2f.c
index c634d00f..7b9a1766 100644
--- a/src/math/atan2f.c
+++ b/src/math/atan2f.c
@@ -81,3 +81,11 @@ float atan2f(float y, float x)
return (z-pi_lo) - pi; /* atan(-,-) */
}
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif