diff options
-rw-r--r-- | dynarr.h | 2 | ||||
-rw-r--r-- | shash.h | 1 | ||||
-rw-r--r-- | str.h | 1 | ||||
-rw-r--r-- | zdynarr.h | 1 |
4 files changed, 0 insertions, 5 deletions
diff --git a/dynarr.h b/dynarr.h index 9fe8701..bbdd45f 100644 --- a/dynarr.h +++ b/dynarr.h @@ -5,8 +5,6 @@ #include <stdint.h> #include <string.h> -#include "stdwrm.h" - typedef struct { size_t count, capacity; } DynArrHeader; #define DYNARR(type) type * diff --git a/shash.h b/shash.h index b7eb396..69f5d61 100644 --- a/shash.h +++ b/shash.h @@ -5,7 +5,6 @@ #include <stdint.h> #include <ctype.h> -#include "stdwrm.h" #include "dynarr.h" #include "str.h" diff --git a/str.h b/str.h index deac90d..9848983 100644 --- a/str.h +++ b/str.h @@ -3,7 +3,6 @@ #include <string.h> -#include "stdwrm.h" #include "dynarr.h" typedef DYNARR(char) string; diff --git a/zdynarr.h b/zdynarr.h index dd777d9..768a1cd 100644 --- a/zdynarr.h +++ b/zdynarr.h @@ -5,7 +5,6 @@ #include <stdint.h> #include <string.h> -#include "stdwrm.h" #include "zone.h" typedef struct { Zone *zone; ZoneFrame *zf; size_t count, capacity; } ZDarrHeader; |