summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'types.h')
-rw-r--r--types.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/types.h b/types.h
index 64cfaf9..498e7f0 100644
--- a/types.h
+++ b/types.h
@@ -33,17 +33,9 @@ typedef struct Page {
max_align_t data[];
} Page;
-typedef struct DynPage {
- struct DynPage **self;
- max_align_t data[];
-} DynPage;
-
typedef struct {
Page *first;
Page *last;
- DynPage **dyn;
- size_t dyn_len;
- size_t dyn_cap;
} Allocator;
typedef struct {