diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-01-29 21:32:56 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-01-29 21:32:56 -0800 |
commit | 0ba5923568ef1bf13eee30012fbf2977fe8b5a7c (patch) | |
tree | 76dad63ef029e3ed14eaac2eb329eee58582a58b /rand.c | |
parent | a11dd30b417e1f48da573748fa4ab5fe09f0b212 (diff) | |
download | txr-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.c | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -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) { |