summaryrefslogtreecommitdiff
path: root/examples/hello_RBTREE/hello_RBTREE.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hello_RBTREE/hello_RBTREE.c')
-rw-r--r--examples/hello_RBTREE/hello_RBTREE.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/hello_RBTREE/hello_RBTREE.c b/examples/hello_RBTREE/hello_RBTREE.c
index bfcf96b..4ee1314 100644
--- a/examples/hello_RBTREE/hello_RBTREE.c
+++ b/examples/hello_RBTREE/hello_RBTREE.c
@@ -21,8 +21,9 @@ static int berrys_cmp (struct berry *a, struct berry *b)
}
static RB_HEAD (berrys_entries, berry) berrys = RB_INITIALIZER(&berrys);
-RB_PROTOTYPE (berrys_entries, berry, link, berrys_cmp);
-RB_GENERATE (berrys_entries, berry, link, berrys_cmp);
+
+RB_PROTOTYPE (berrys_entries, berry, link, berrys_cmp)
+RB_GENERATE (berrys_entries, berry, link, berrys_cmp)
static void output_berries (void)
{