summaryrefslogtreecommitdiff
path: root/mpz/tdiv_q.c
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2005-05-18 15:39:59 +0200
committertege <tege@gmplib.org>2005-05-18 15:39:59 +0200
commit85d3ff30728f215e6601f701ae03addf4eab69f7 (patch)
tree40fa89fb5ae60d161e015f2690e7fbc4f584b362 /mpz/tdiv_q.c
parenta3d00ad3dbee97a09e3bb641a0d7dfcbe2d437ca (diff)
downloadgmp-85d3ff30728f215e6601f701ae03addf4eab69f7.tar.gz
Remove TMP_XXXX marker arguments.
Diffstat (limited to 'mpz/tdiv_q.c')
-rw-r--r--mpz/tdiv_q.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mpz/tdiv_q.c b/mpz/tdiv_q.c
index 1d97e0cd4..2bf5b940a 100644
--- a/mpz/tdiv_q.c
+++ b/mpz/tdiv_q.c
@@ -29,7 +29,7 @@ mpz_tdiv_q (mpz_ptr quot, mpz_srcptr num, mpz_srcptr den)
mp_size_t ql;
mp_size_t ns, ds, nl, dl;
mp_ptr np, dp, qp, rp;
- TMP_DECL (marker);
+ TMP_DECL;
ns = SIZ (num);
ds = SIZ (den);
@@ -48,7 +48,7 @@ mpz_tdiv_q (mpz_ptr quot, mpz_srcptr num, mpz_srcptr den)
MPZ_REALLOC (quot, ql);
- TMP_MARK (marker);
+ TMP_MARK;
qp = PTR (quot);
rp = (mp_ptr) TMP_ALLOC (dl * BYTES_PER_MP_LIMB);
np = PTR (num);
@@ -80,5 +80,5 @@ mpz_tdiv_q (mpz_ptr quot, mpz_srcptr num, mpz_srcptr den)
ql -= qp[ql - 1] == 0;
SIZ (quot) = (ns ^ ds) >= 0 ? ql : -ql;
- TMP_FREE (marker);
+ TMP_FREE;
}