summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/man/2/avl2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/man/2/avl b/sys/man/2/avl
index 9df362037..0dd98f844 100644
--- a/sys/man/2/avl
+++ b/sys/man/2/avl
@@ -31,6 +31,8 @@ Avltree *avlcreate(int(*cmp)(Avl*, Avl*));
Avl *avlinsert(Avltree *tree, Avl *new);
Avl *avldelete(Avltree *tree, Avl *key);
Avl *avllookup(Avltree *tree, Avl *key, int dir);
+Avl *avlmin(Avltree *tree);
+Avl *avlmax(Avltree *tree);
Avl *avlnext(Avl *n);
Avl *avlprev(Avl *n);