ALLOC
#define ALLOC(object_type) (object_type *) mem_alloc(sizeof(object_type))
#define ALLOC(type, size) \
#define ALLOC(ptr, sz) do { \