summaryrefslogtreecommitdiffstats
path: root/libm/src/s_llroundf.c
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
commita27d2baa0c1a2ec70f47ea9199b1dd6762c8a349 (patch)
treedefd1cc07d16ad2f3b21154114e092d11c94c5bb /libm/src/s_llroundf.c
downloadbionic-a27d2baa0c1a2ec70f47ea9199b1dd6762c8a349.zip
bionic-a27d2baa0c1a2ec70f47ea9199b1dd6762c8a349.tar.gz
bionic-a27d2baa0c1a2ec70f47ea9199b1dd6762c8a349.tar.bz2
Initial Contributionandroid-1.0
Diffstat (limited to 'libm/src/s_llroundf.c')
-rw-r--r--libm/src/s_llroundf.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/libm/src/s_llroundf.c b/libm/src/s_llroundf.c
new file mode 100644
index 0000000..3dd6905
--- /dev/null
+++ b/libm/src/s_llroundf.c
@@ -0,0 +1,11 @@
+#include <sys/cdefs.h>
+/* __FBSDID("$FreeBSD: src/lib/msun/src/s_llroundf.c,v 1.2 2005/04/08 00:52:27 das Exp $"); */
+
+#define type float
+#define roundit roundf
+#define dtype long long
+#define DTYPE_MIN LONGLONG_MIN
+#define DTYPE_MAX LONGLONG_MAX
+#define fn llroundf
+
+#include "s_lround.c"