From 6c0a26cb766ed35459cd18dfe709eec5eb377962 Mon Sep 17 00:00:00 2001 From: superp00t Date: Sun, 7 Jul 2024 03:05:07 -0400 Subject: [PATCH] fix(array): include stdint.h --- 3.3.5a/include/storm/array.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/3.3.5a/include/storm/array.h b/3.3.5a/include/storm/array.h index e9fc53f..9284229 100644 --- a/3.3.5a/include/storm/array.h +++ b/3.3.5a/include/storm/array.h @@ -1,6 +1,8 @@ #ifndef STORM_ARRAY_H #define STORM_ARRAY_H +#include + #define STORM_TS_BASE_ARRAY(type) typedef struct TSBaseArray_##type TSBaseArray_##type; \ struct TSBaseArray_##type { \ void** vtable; \