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