summaryrefslogtreecommitdiff
path: root/lib/libm/lroundl.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libm/lroundl.c')
-rw-r--r--lib/libm/lroundl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/libm/lroundl.c b/lib/libm/lroundl.c
new file mode 100644
index 00000000..094fdf64
--- /dev/null
+++ b/lib/libm/lroundl.c
@@ -0,0 +1,6 @@
+#include <math.h>
+
+long lroundl(long double x)
+{
+ return roundl(x);
+}