Commit d90f39d5 authored by Nils Goroll's avatar Nils Goroll

VRB_PROTOTYPE_* and VRB_GENERATE_* macros are not to be used as staments

It took me way too long to understand that empty declarations
found by suncc were caused by the extra ;
parent ac517cb9
......@@ -109,10 +109,10 @@ static int f_flag = 0;
static unsigned maxfieldlen = 0;
VRB_PROTOTYPE_STATIC(t_order, top, e_order, cmp_order);
VRB_GENERATE_STATIC(t_order, top, e_order, cmp_order);
VRB_PROTOTYPE_STATIC(t_key, top, e_key, cmp_key);
VRB_GENERATE_STATIC(t_key, top, e_key, cmp_key);
VRB_PROTOTYPE_STATIC(t_order, top, e_order, cmp_order)
VRB_GENERATE_STATIC(t_order, top, e_order, cmp_order)
VRB_PROTOTYPE_STATIC(t_key, top, e_key, cmp_key)
VRB_GENERATE_STATIC(t_key, top, e_key, cmp_key)
static int __match_proto__(VSLQ_dispatch_f)
accumulate(struct VSL_data *vsl, struct VSL_transaction * const pt[],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment