thunderbrew/src/ui/LuaMemory.hpp

10 lines
162 B
C++
Raw Normal View History

2023-01-02 13:17:18 -06:00
#ifndef UI_LUA_MEMORY_HPP
#define UI_LUA_MEMORY_HPP
#include <cstdlib>
void* luaM_initPool(void);
void* luaM_reallocPool(void*, void*, size_t, size_t);
#endif