aboutsummaryrefslogtreecommitdiff
path: root/src/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/utils.h b/src/utils.h
index 1a88220..2381385 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -4,11 +4,10 @@
#include <stdlib.h>
struct allocator;
-typedef struct allocator * allocator_t;
-allocator_t new_allocator();
-void delete_allocator(allocator_t allocator);
+struct allocator * new_allocator();
+void delete_allocator(struct allocator * allocator);
-void* allocate(allocator_t allocator, size_t size);
+void* allocate(struct allocator * allocator, size_t size);
#endif // FVM_UTILS_H_