diff options
-rw-r--r-- | lib.h | 4 | ||||
-rw-r--r-- | struct.c | 2 | ||||
-rw-r--r-- | syslog.c | 4 |
3 files changed, 5 insertions, 5 deletions
@@ -1183,6 +1183,6 @@ loc list_collect_revappend(loc ptail, val obj); #define static_forward(decl) namespace { extern decl; } #define static_def(def) namespace { def; } #else -#define static_forward(decl) static decl; -#define static_def(def) static def; +#define static_forward(decl) static decl +#define static_def(def) static def #endif @@ -1633,7 +1633,7 @@ val static_slot_type_reg(val slot, val strct) static_def(struct cobj_ops struct_type_ops = cobj_ops_init(eq, struct_type_print, struct_type_destroy, - struct_type_mark, cobj_eq_hash_op)) + struct_type_mark, cobj_eq_hash_op)); struct cobj_ops struct_inst_ops = cobj_ops_init_ex(struct_inst_equal, struct_inst_print, @@ -51,7 +51,7 @@ struct syslog_strm { val prio_k; -static_forward(struct strm_ops syslog_strm_ops) +static_forward(struct strm_ops syslog_strm_ops); void syslog_init(void) { @@ -231,7 +231,7 @@ static_def(struct strm_ops syslog_strm_ops = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, syslog_get_prop, syslog_set_prop, - 0, 0, 0, 0)) + 0, 0, 0, 0)); val make_syslog_stream(val prio) { |