aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/c/i64_utof.c
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/c/i64_utof.c')
-rw-r--r--runtime/c/i64_utof.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/c/i64_utof.c b/runtime/c/i64_utof.c
index 87b85bfc..77a23765 100644
--- a/runtime/c/i64_utof.c
+++ b/runtime/c/i64_utof.c
@@ -38,7 +38,7 @@
/* Conversion from unsigned int64 to float32 */
-float __i64_utof(unsigned long long x)
+float i64_utof(unsigned long long x)
{
if (x >= 1ULL << 53) {
/* x is large enough that double rounding can occur.