summary refs log tree commit diff
diff options
context:
space:
mode:
authorWormHeamer2025-02-28 18:22:56 -0500
committerWormHeamer2025-02-28 18:22:56 -0500
commit7383a91d15bcc13b8363abd29e2cea5b78315987 (patch)
tree6a09f5362028f4b64e1100297b164f16616dcdb1
parenta68e15df0ebe5ceab712b652050425f17594d3d5 (diff)
don't include stdwrm.h by default
-rw-r--r--dynarr.h2
-rw-r--r--shash.h1
-rw-r--r--str.h1
-rw-r--r--zdynarr.h1
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;