diff options
author | Marvin Borner | 2023-04-13 13:08:21 +0200 |
---|---|---|
committer | Marvin Borner | 2023-04-13 13:08:21 +0200 |
commit | 3fec61c52b2636397012b82219e1ae5d19fc9fc0 (patch) | |
tree | 5789dbd0d8058fe885a797ea59c5209e91ea7597 /inc/spec.h | |
parent | 2ca9fd69c9b60c54316dfb25ba45e64fee0de968 (diff) |
Basically working
many memory leaks, will fix kthxbye
Diffstat (limited to 'inc/spec.h')
-rw-r--r-- | inc/spec.h | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -10,15 +10,11 @@ struct bloc_header { char identifier[BLOC_IDENTIFIER_LENGTH]; short length; - void *data; + void *entries; } __attribute__((packed)); struct bloc_entry { void *expression; } __attribute__((packed)); -struct bloc_structure { - void *expression; -} __attribute__((packed)); - #endif |