luat_mem.h 220 B

1234567891011
  1. #ifndef LUAT_MEM_H
  2. #define LUAT_MEM_H
  3. #define LUAT_MEM_MALLOC luat_heap_malloc
  4. #define LUAT_MEM_FREE luat_heap_free
  5. #define LUAT_MEM_REALLOC luat_heap_realloc
  6. #define LUAT_MEM_CALLOC luat_heap_calloc
  7. #endif