diff options
author | WormHeamer | 2025-02-28 18:22:56 -0500 |
---|---|---|
committer | WormHeamer | 2025-02-28 18:22:56 -0500 |
commit | 7383a91d15bcc13b8363abd29e2cea5b78315987 (patch) | |
tree | 6a09f5362028f4b64e1100297b164f16616dcdb1 | |
parent | a68e15df0ebe5ceab712b652050425f17594d3d5 (diff) |
don't include stdwrm.h by default
-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
@@ -5,8 +5,6 @@ #include <stdint.h> #include <string.h> -#include "stdwrm.h" - typedef struct { size_t count, capacity; } DynArrHeader; #define DYNARR(type) type * @@ -5,7 +5,6 @@ #include <stdint.h> #include <ctype.h> -#include "stdwrm.h" #include "dynarr.h" #include "str.h" @@ -3,7 +3,6 @@ #include <string.h> -#include "stdwrm.h" #include "dynarr.h" typedef DYNARR(char) string; @@ -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; |