diff options
Diffstat (limited to 'mig_test/software/lib/divmod.c')
-rw-r--r-- | mig_test/software/lib/divmod.c | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/mig_test/software/lib/divmod.c b/mig_test/software/lib/divmod.c deleted file mode 100644 index e810ea7..0000000 --- a/mig_test/software/lib/divmod.c +++ /dev/null @@ -1,50 +0,0 @@ -long udivmodsi4 ();
-
-long
-__divsi3 (long a, long b)
-{
- int neg = 0;
- long res;
-
- if (a < 0)
- {
- a = -a;
- neg = !neg;
- }
-
- if (b < 0)
- {
- b = -b;
- neg = !neg;
- }
-
- res = udivmodsi4 (a, b, 0);
-
- if (neg)
- res = -res;
-
- return res;
-}
-
-long
-__modsi3 (long a, long b)
-{
- int neg = 0;
- long res;
-
- if (a < 0)
- {
- a = -a;
- neg = 1;
- }
-
- if (b < 0)
- b = -b;
-
- res = udivmodsi4 (a, b, 1);
-
- if (neg)
- res = -res;
-
- return res;
-}
|