diff options
author | WormHeamer | 2025-02-28 21:11:15 -0500 |
---|---|---|
committer | WormHeamer | 2025-02-28 21:11:15 -0500 |
commit | 7f796680b3302646ec3e9a14ea673c2313f41895 (patch) | |
tree | b8fdfdf3f76b572a31d653de46369f0d8d044f46 | |
parent | a051895b87c1bc7d7d397349726c9a175713d2d1 (diff) |
make ZONE_MIN_CAPACITY user-definable
-rw-r--r-- | zone.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/zone.h b/zone.h index 2f653df..0a6db89 100644 --- a/zone.h +++ b/zone.h @@ -3,7 +3,9 @@ #include <stdint.h> +#ifndef ZONE_MIN_CAPACITY #define ZONE_MIN_CAPACITY 1024 +#endif #define ZONE_USE_MALLOC 0 #define ZONE_USE_MMAP 1 |