summaryrefslogtreecommitdiff
path: root/src/shared/bitmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/bitmap.h')
-rw-r--r--src/shared/bitmap.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/shared/bitmap.h b/src/shared/bitmap.h
index 611a3e0e9d..f65a050584 100644
--- a/src/shared/bitmap.h
+++ b/src/shared/bitmap.h
@@ -6,7 +6,11 @@
#include "hashmap.h"
#include "macro.h"
-typedef struct Bitmap Bitmap;
+typedef struct Bitmap {
+ uint64_t *bitmaps;
+ size_t n_bitmaps;
+ size_t bitmaps_allocated;
+} Bitmap;
Bitmap *bitmap_new(void);
Bitmap *bitmap_copy(Bitmap *b);