#ifndef BASE_MEM_H #define BASE_MEM_H #define ARENA_ALIGN (2 * sizeof(void *)) #define MIN(a, b) (((a) < (b)) ? (a) : (b)) #define MAX(a, b) (((a) > (b)) ? (a) : (b)) #endif