aboutsummaryrefslogtreecommitdiff
path: root/src/math/lroundf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/lroundf.c')
-rw-r--r--src/math/lroundf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/lroundf.c b/src/math/lroundf.c
index c4707e7d..c7d56174 100644
--- a/src/math/lroundf.c
+++ b/src/math/lroundf.c
@@ -4,3 +4,11 @@ long lroundf(float x)
{
return roundf(x);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif