aboutsummaryrefslogtreecommitdiff
path: root/tree.h
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-04-17 20:09:38 -0700
committerMichael Forney <mforney@mforney.org>2019-04-17 20:11:06 -0700
commit08bb1a3d64dc288c56c74f06a5b89952e287ac91 (patch)
tree93cc07202e7ef4f2f0e358bf1eacaea928ac059d /tree.h
parentd02201ec74d5d6f54bf1980317be45e1e5aef21c (diff)
downloadcproc-08bb1a3d64dc288c56c74f06a5b89952e287ac91.tar.xz
Merge map.h and tree.h into util.h
Diffstat (limited to 'tree.h')
-rw-r--r--tree.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/tree.h b/tree.h
deleted file mode 100644
index 6aa5c4e..0000000
--- a/tree.h
+++ /dev/null
@@ -1,8 +0,0 @@
-struct treenode {
- uint64_t key;
- void *child[2];
- int height;
- _Bool new; /* set by treeinsert if this node was newly allocated */
-};
-
-void *treeinsert(void **, uint64_t, size_t);