VEC_MULT may be set as user, so have a #if guard.

This commit is contained in:
2024-10-24 03:17:54 +01:00
parent 3a8f0c8d00
commit f0f1e06e1e

5
vec.h
View File

@@ -41,7 +41,10 @@ void vec_ensure_remaining(void **ptr, uint32_t space);
#include <malloc.h>
#include <string.h>
#define VEC_MULT 2
#ifndef VEC_MULT
#define VEC_MULT 2
#endif
#define MAX(A, B) ((A) > (B) ? (A) : (B))
#define MIN(A, B) ((A) < (B) ? (A) : (B))