diff options
author | Torbjorn Granlund <tege@gmplib.org> | 2009-12-20 23:54:57 +0100 |
---|---|---|
committer | Torbjorn Granlund <tege@gmplib.org> | 2009-12-20 23:54:57 +0100 |
commit | 3ba1597c34eeddef0c820863d98ed9506c8d3e9c (patch) | |
tree | 967966420d447f3e630ca1cc85709b7f9c1e03af /mpz/divexact.c | |
parent | a6426a5313cac3c0fb05358e7d254653222f745f (diff) | |
download | gmp-3ba1597c34eeddef0c820863d98ed9506c8d3e9c.tar.gz |
Change all bit counts for bignums to use mp_bitcnt_t. Update documentation.
Diffstat (limited to 'mpz/divexact.c')
-rw-r--r-- | mpz/divexact.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpz/divexact.c b/mpz/divexact.c index b430d2f70..95ba31112 100644 --- a/mpz/divexact.c +++ b/mpz/divexact.c @@ -76,6 +76,6 @@ mpz_divexact (mpz_ptr quot, mpz_srcptr num, mpz_srcptr den) if (qp != PTR(quot)) MPN_COPY (PTR(quot), qp, qn); - + TMP_FREE; } |