summaryrefslogtreecommitdiffstats
path: root/rand.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-01-29 21:32:56 -0800
committerKaz Kylheku <kaz@kylheku.com>2015-01-29 21:32:56 -0800
commit0ba5923568ef1bf13eee30012fbf2977fe8b5a7c (patch)
tree76dad63ef029e3ed14eaac2eb329eee58582a58b /rand.c
parenta11dd30b417e1f48da573748fa4ab5fe09f0b212 (diff)
downloadtxr-0ba5923568ef1bf13eee30012fbf2977fe8b5a7c.tar.gz
txr-0ba5923568ef1bf13eee30012fbf2977fe8b5a7c.tar.bz2
txr-0ba5923568ef1bf13eee30012fbf2977fe8b5a7c.zip
Use macro to initialize cobj_ops.
* lib.h (cobj_ops_init): New macro. * hash.c (hash_ops, hash_iter_ops): Initialize with cobj_ops_init. * rand.c (random_state_ops): Likewise. * regex.c (char_set_obj_ops, regex_obj_ops): Likewise.
Diffstat (limited to 'rand.c')
-rw-r--r--rand.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/rand.c b/rand.c
index 5bbad186..7eff059b 100644
--- a/rand.c
+++ b/rand.c
@@ -64,13 +64,11 @@ struct rand_state {
val random_state_s;
-static struct cobj_ops random_state_ops = {
- eq,
- cobj_print_op,
- cobj_destroy_free_op,
- cobj_mark_op,
- cobj_hash_op
-};
+static struct cobj_ops random_state_ops = cobj_ops_init(eq,
+ cobj_print_op,
+ cobj_destroy_free_op,
+ cobj_mark_op,
+ cobj_hash_op);
static val make_state(void)
{