From 3fec61c52b2636397012b82219e1ae5d19fc9fc0 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 13 Apr 2023 13:08:21 +0200 Subject: Basically working many memory leaks, will fix kthxbye --- inc/spec.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'inc/spec.h') 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 -- cgit v1.2.3