aboutsummaryrefslogtreecommitdiff
path: root/contrib/gcc/config/udivmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/gcc/config/udivmod.c')
-rw-r--r--contrib/gcc/config/udivmod.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/contrib/gcc/config/udivmod.c b/contrib/gcc/config/udivmod.c
deleted file mode 100644
index 1395e9cc9402..000000000000
--- a/contrib/gcc/config/udivmod.c
+++ /dev/null
@@ -1,14 +0,0 @@
-long udivmodsi4 ();
-
-long
-__udivsi3 (long a, long b)
-{
- return udivmodsi4 (a, b, 0);
-}
-
-long
-__umodsi3 (long a, long b)
-{
- return udivmodsi4 (a, b, 1);
-}
-