From 198207edfc4afad964df54c56415a7b46b0f772b Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Mon, 24 Feb 2014 19:17:43 +0300 Subject: [PATCH] avl: define clone_stree avl_clone() I haven't figured out the naming properly. Eventually I will probably rename everything but this is for the transition. Signed-off-by: Dan Carpenter --- avl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/avl.h b/avl.h index 8b7a8549..65dda645 100644 --- a/avl.h +++ b/avl.h @@ -124,5 +124,6 @@ AvlNode *avl_lookup_node(const AVL *avl, const struct sm_state *sm); /* O(log n). Lookup an AVL node by sm. Return NULL if not present. */ AVL *avl_clone(AVL *orig); +#define clone_stree avl_clone #endif -- 2.11.4.GIT