aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/c/i64_umulh.c
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/c/i64_umulh.c')
-rw-r--r--runtime/c/i64_umulh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/c/i64_umulh.c b/runtime/c/i64_umulh.c
index d2394d09..a2e33f5d 100644
--- a/runtime/c/i64_umulh.c
+++ b/runtime/c/i64_umulh.c
@@ -43,7 +43,7 @@ typedef unsigned int u32;
/* Hacker's Delight, algorithm 8.1, specialized to two 32-bit words */
-u64 __i64_umulh(u64 u, u64 v)
+u64 i64_umulh(u64 u, u64 v)
{
u32 u0 = u, u1 = u >> 32;
u32 v0 = v, v1 = v >> 32;