summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/rockconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/rockconf.h')
-rw-r--r--apps/plugins/lua/rockconf.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/apps/plugins/lua/rockconf.h b/apps/plugins/lua/rockconf.h
index c0a233135a..a13146d7e9 100644
--- a/apps/plugins/lua/rockconf.h
+++ b/apps/plugins/lua/rockconf.h
@@ -23,6 +23,7 @@
23#define _ROCKCONF_H_ 23#define _ROCKCONF_H_
24 24
25#include "plugin.h" 25#include "plugin.h"
26#include <tlsf.h>
26 27
27#undef LUAI_THROW 28#undef LUAI_THROW
28#undef LUAI_TRY 29#undef LUAI_TRY
@@ -40,9 +41,6 @@
40#define luai_jmpbuf jmp_buf 41#define luai_jmpbuf jmp_buf
41 42
42extern char curpath[MAX_PATH]; 43extern char curpath[MAX_PATH];
43void* dlmalloc(size_t bytes);
44void *dlrealloc(void *ptr, size_t size);
45void dlfree(void *ptr);
46struct tm *gmtime(const time_t *timep); 44struct tm *gmtime(const time_t *timep);
47long strtol(const char *nptr, char **endptr, int base); 45long strtol(const char *nptr, char **endptr, int base);
48unsigned long strtoul(const char *str, char **endptr, int base); 46unsigned long strtoul(const char *str, char **endptr, int base);
@@ -54,8 +52,9 @@ long lpow(long x, long y);
54#define pow lpow 52#define pow lpow
55 53
56/* Simple substitutions */ 54/* Simple substitutions */
57#define realloc dlrealloc 55#define malloc tlsf_malloc
58#define free dlfree 56#define realloc tlsf_realloc
57#define free tlsf_free
59#define memchr rb->memchr 58#define memchr rb->memchr
60#define snprintf rb->snprintf 59#define snprintf rb->snprintf
61#define strcat rb->strcat 60#define strcat rb->strcat