diff options
Diffstat (limited to 'lib.h')
-rw-r--r-- | lib.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -204,6 +204,9 @@ struct cobj_ops { cnum (*hash)(val self); }; +#define cobj_ops_init(equal, print, destroy, mark, hash) \ + { equal, print, destroy, mark, hash } + /* Default operations for above structure. * Default equal is eq */ |