chore(ui): clean up function declarations

This commit is contained in:
fallenoak 2023-01-04 17:25:03 -06:00 committed by GitHub
parent f24fbf26c6
commit d61f0faef1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
38 changed files with 471 additions and 471 deletions

View file

@ -3,7 +3,7 @@
#include <cstdlib>
void* luaM_initPool(void);
void* luaM_reallocPool(void*, void*, size_t, size_t);
void* luaM_initPool();
void* luaM_reallocPool(void* ud, void* ptr, size_t osize, size_t nsize);
#endif