aboutsummaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'util.h')
-rw-r--r--util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.h b/util.h
index a3f0baa..615a4e4 100644
--- a/util.h
+++ b/util.h
@@ -14,7 +14,7 @@ struct mapkey {
};
struct treenode {
- uint64_t key;
+ unsigned long long key;
void *child[2];
int height;
_Bool new; /* set by treeinsert if this node was newly allocated */
@@ -55,4 +55,4 @@ void *mapget(struct map *, struct mapkey *);
/* tree */
-void *treeinsert(void **, uint64_t, size_t);
+void *treeinsert(void **, unsigned long long, size_t);