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