aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/c/i64_utod.c
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/c/i64_utod.c')
-rw-r--r--runtime/c/i64_utod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/c/i64_utod.c b/runtime/c/i64_utod.c
index e70820a9..7210c73c 100644
--- a/runtime/c/i64_utod.c
+++ b/runtime/c/i64_utod.c
@@ -38,7 +38,7 @@
/* Conversion from unsigned int64 to float64 */
-double __i64_utod(unsigned long long x)
+double i64_utod(unsigned long long x)
{
unsigned xl = x, xh = x >> 32;
return (double) xl + 0x1.0p32 * (double) xh;