aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/c/i64_shl.c
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/c/i64_shl.c')
-rw-r--r--runtime/c/i64_shl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/c/i64_shl.c b/runtime/c/i64_shl.c
index 9b9aae57..186d2d32 100644
--- a/runtime/c/i64_shl.c
+++ b/runtime/c/i64_shl.c
@@ -38,7 +38,7 @@
/* Shift left */
-unsigned long long __i64_shl(unsigned long long x, int amount)
+unsigned long long i64_shl(unsigned long long x, int amount)
{
unsigned xl = x, xh = x >> 32;
amount = amount & 63;