summaryrefslogtreecommitdiff
path: root/source/base/base_mem.h
blob: 945f0ce217da1af73bef9be80642cb442ccd7456 (plain)
1
2
3
4
5
6
7
8
#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