summaryrefslogtreecommitdiffstats
path: root/rand.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-04-21 21:19:39 -0700
committerKaz Kylheku <kaz@kylheku.com>2017-04-21 21:19:39 -0700
commitb4d9e01b4c68a995d39f7c01c43ba2aed02c968b (patch)
tree97312474f566b5e08f352bf830a91f488290f26f /rand.c
parent4e647f4d27827d2918e519cb3f52583d2bbb2a59 (diff)
downloadtxr-b4d9e01b4c68a995d39f7c01c43ba2aed02c968b.tar.gz
txr-b4d9e01b4c68a995d39f7c01c43ba2aed02c968b.tar.bz2
txr-b4d9e01b4c68a995d39f7c01c43ba2aed02c968b.zip
Rename c_uint_ptr_num; introduce cunum typedef.
Unsigned version of cnum becomes less verbose. * arith.c (c_uint_ptr_num): Renamed to c_unum. * arith.h (c_uint_ptr_num): Declaration removed. (c_unum): Declared. * itypes.c (c_u32, c_u64, c_uint): Follow rename. * lib.h (ucnum): New typedef. * rand.c (make_random_state): Follow rename.
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 d29fbecc..1dec0a9e 100644
--- a/rand.c
+++ b/rand.c
@@ -163,7 +163,7 @@ val make_random_state(val seed, val warmup)
seed, nao);
for (i = 0; i < 16; i++)
- r->state[i] = c_uint_ptr_num(seed->v.vec[i]);
+ r->state[i] = c_unum(seed->v.vec[i]);
r->cur = c_num(seed->v.vec[i]);
return rs;