summaryrefslogtreecommitdiff
path: root/utilities/genhash_int.h
diff options
context:
space:
mode:
Diffstat (limited to 'utilities/genhash_int.h')
-rw-r--r--utilities/genhash_int.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/utilities/genhash_int.h b/utilities/genhash_int.h
deleted file mode 100644
index f270d8e..0000000
--- a/utilities/genhash_int.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/**
- * \private
- */
-struct genhash_entry_t {
- /** The key for this entry */
- void *key;
- /** Size of the key */
- size_t nkey;
- /** The value for this entry */
- void *value;
- /** Size of the value */
- size_t nvalue;
- /** Pointer to the next entry */
- struct genhash_entry_t *next;
-};
-
-struct _genhash {
- size_t size;
- struct hash_ops ops;
- struct genhash_entry_t *buckets[];
-};