Skip to content
Snippets Groups Projects
Commit ff55a797 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

uclibc: add the trunc function

SVN-Revision: 14014
parent 087a2bc1
No related branches found
No related tags found
No related merge requests found
--- a/libm/s_floor.c
+++ b/libm/s_floor.c
@@ -81,3 +81,18 @@ libm_hidden_proto(floor)
return x;
}
libm_hidden_def(floor)
+
+
+libm_hidden_proto(trunc)
+double
+trunc(double x)
+{
+ if (!finite (x))
+ return x;
+
+ if (x < 0.0)
+ return - floor (-x);
+ else
+ return floor (x);
+}
+libm_hidden_def(trunc)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment