aboutsummaryrefslogtreecommitdiff
path: root/inc/spec.h
diff options
context:
space:
mode:
authorMarvin Borner2023-04-13 13:08:21 +0200
committerMarvin Borner2023-04-13 13:08:21 +0200
commit3fec61c52b2636397012b82219e1ae5d19fc9fc0 (patch)
tree5789dbd0d8058fe885a797ea59c5209e91ea7597 /inc/spec.h
parent2ca9fd69c9b60c54316dfb25ba45e64fee0de968 (diff)
Basically working
many memory leaks, will fix kthxbye
Diffstat (limited to 'inc/spec.h')
-rw-r--r--inc/spec.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/inc/spec.h b/inc/spec.h
index 8bd8ace..3d8300c 100644
--- a/inc/spec.h
+++ b/inc/spec.h
@@ -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