aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/mppa_k1c/i64_umod.c
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/mppa_k1c/i64_umod.c')
-rw-r--r--runtime/mppa_k1c/i64_umod.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/mppa_k1c/i64_umod.c b/runtime/mppa_k1c/i64_umod.c
index e69de29b..59e35960 100644
--- a/runtime/mppa_k1c/i64_umod.c
+++ b/runtime/mppa_k1c/i64_umod.c
@@ -0,0 +1,6 @@
+extern unsigned long __umoddi3 (unsigned long a, unsigned long b);
+
+unsigned i32_umod (unsigned a, unsigned b)
+{
+ return __umoddi3 (a, b);
+}