summaryrefslogtreecommitdiffstats
path: root/rand.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-01-22 19:05:42 -0800
committerKaz Kylheku <kaz@kylheku.com>2019-01-22 19:05:42 -0800
commitceac286861928128d066b31c43e32a6034df0afb (patch)
tree9dbbc6c4ede2ba39f0d636f4f3a1c67a20f9aec6 /rand.c
parent812e34fccb1fe84d9127e2b294e6490e0bde4b00 (diff)
downloadtxr-ceac286861928128d066b31c43e32a6034df0afb.tar.gz
txr-ceac286861928128d066b31c43e32a6034df0afb.tar.bz2
txr-ceac286861928128d066b31c43e32a6034df0afb.zip
mpi: put access macros into mp_ namespace
* mpi/mpi.h (mp_sign, mp_isneg, mp_used, mp_alloc, mp_digits, mp_digit): New macros, based on renaming SIGN, ISNEG, USED, ALLOC, DIGITS and DIGIT. (mp_set_prec): Use mp_digits instead of DIGITS. * mpi/mpi.c (SIGN, ISNEG, USED, ALLOC, DIGITS, DIGIT): Macros defined here now, as local aliases for their namespaced counterparts. * arith.c (signum, floordiv): Replace ISNEG with mp_isneg. * rand.c (random): Replace ISNEG with mp_isneg. * sysif.c (off_t_num): Replace USED, DIGITS and ISNEG with mp_used, mp_digits and mp_isneg.
Diffstat (limited to 'rand.c')
-rw-r--r--rand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rand.c b/rand.c
index 3d280ef8..d5780d78 100644
--- a/rand.c
+++ b/rand.c
@@ -255,7 +255,7 @@ val random(val state, val modulus)
cobj_handle(self, state, random_state_s));
mp_int *m;
- if (bignump(modulus) && !ISNEG(m = mp(modulus))) {
+ if (bignump(modulus) && !mp_isneg(m = mp(modulus))) {
ucnum bits = mp_count_bits(m) - mp_is_pow_two(m);
ucnum rands_needed = (bits + 32 - 1) / 32;
ucnum msb_rand_bits = bits % 32;