aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/c/i64_stod.c
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/c/i64_stod.c')
-rw-r--r--runtime/c/i64_stod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/c/i64_stod.c b/runtime/c/i64_stod.c
index 158b6892..b5b6a7bc 100644
--- a/runtime/c/i64_stod.c
+++ b/runtime/c/i64_stod.c
@@ -38,7 +38,7 @@
/* Conversion from signed int64 to float64 */
-double __i64_stod(signed long long x)
+double i64_stod(signed long long x)
{
unsigned xl = x;
signed xh = x >> 32;