diff --git a/tree234.h b/tree234.h index 2acdaa6a..6675e982 100644 --- a/tree234.h +++ b/tree234.h @@ -55,7 +55,7 @@ void *find234(tree234 *t, void *e, cmpfn234 cmp); * Delete an element e in a 2-3-4 tree. Does not free the element, * merely removes all links to it from the tree nodes. */ -void *del234(tree234 *t, void *e); +void del234(tree234 *t, void *e); /* * Iterate over the elements of a tree234, in order.