summary refs log tree commit diff
diff options
context:
space:
mode:
authorWormHeamer2025-03-04 22:25:07 -0500
committerWormHeamer2025-03-04 22:25:07 -0500
commit362d66c4caf89a76ec87bb601791c651efddceb7 (patch)
tree646049d9a798c8c6ea852fa801e401128c252e29
parentbaf418d216537d5c095d84a498053589ff02e4e5 (diff)
remove ZONE_MIN_CAPACITY (unused & unneeded)
-rw-r--r--zone.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/zone.h b/zone.h
index 1d1dd4e..7849ce6 100644
--- a/zone.h
+++ b/zone.h
@@ -4,10 +4,6 @@
 #include <stdint.h>
 #include <stddef.h>
 
-#ifndef ZONE_MIN_CAPACITY
-#define ZONE_MIN_CAPACITY 1024
-#endif
-
 #ifndef ZONE_BACKEND
 	#ifdef __unix__
 		#define ZONE_BACKEND ZONE_USE_MMAP