summaryrefslogtreecommitdiff
path: root/mpz/divexact.c
diff options
context:
space:
mode:
authortege <tege@gmplib.org>1996-05-24 08:34:23 +0200
committertege <tege@gmplib.org>1996-05-24 08:34:23 +0200
commit9932bf27bdee47581697ae75abcbbd5b1d57194c (patch)
treed31629ce52b2ab03c7a90bac88e5bfbabb3b8fe2 /mpz/divexact.c
parent5fda7ce1e631642d84fbdd639f1fb6f0c1ccfd41 (diff)
downloadgmp-9932bf27bdee47581697ae75abcbbd5b1d57194c.tar.gz
Clean up spacing and indentation.
Diffstat (limited to 'mpz/divexact.c')
-rw-r--r--mpz/divexact.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mpz/divexact.c b/mpz/divexact.c
index 336c3ff42..b89744804 100644
--- a/mpz/divexact.c
+++ b/mpz/divexact.c
@@ -22,12 +22,12 @@ MA 02111-1307, USA. */
/* Ken Weber (kweber@mat.ufrgs.br, kweber@mcs.kent.edu)
Funding for this work has been partially provided by Conselho Nacional
- de Desenvolvimento Cienti'fico e Tecnolo'gico (CNPq) do Brazil, Grant
+ de Desenvolvimento Cienti'fico e Tecnolo'gico (CNPq) do Brazil, Grant
301314194-2, and was done while I was a visiting reseacher in the Instituto
de Matema'tica at Universidade Federal do Rio Grande do Sul (UFRGS).
References:
- T. Jebelean, An algorithm for exact division, Journal of Symbolic
+ T. Jebelean, An algorithm for exact division, Journal of Symbolic
Computation, v. 15, 1993, pp. 169-180. */
#include "gmp.h"
@@ -46,7 +46,7 @@ mpz_divexact (quot, num, den)
{
mp_ptr qp, tp;
mp_size_t qsize, tsize;
-
+
mp_srcptr np = num->_mp_d;
mp_srcptr dp = den->_mp_d;
mp_size_t nsize = ABS (num->_mp_size);
@@ -107,6 +107,6 @@ mpz_divexact (quot, num, den)
MPN_NORMALIZE (qp, qsize);
quot->_mp_size = (num->_mp_size < 0) == (den->_mp_size < 0) ? qsize : -qsize;
-
+
TMP_FREE (marker);
}