diff options
Diffstat (limited to 'lmem.h')
-rw-r--r-- | lmem.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: $ | 2 | ** $Id: lmem.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $ |
3 | ** Interface to Memory Manager | 3 | ** Interface to Memory Manager |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -38,7 +38,9 @@ int luaM_growaux (void **block, unsigned long nelems, int size, | |||
38 | #define luaM_reallocvector(v,n,t) ((t *)luaM_realloc(v,(n)*sizeof(t))) | 38 | #define luaM_reallocvector(v,n,t) ((t *)luaM_realloc(v,(n)*sizeof(t))) |
39 | 39 | ||
40 | 40 | ||
41 | void luaM_query (void); /* only ifdef DEBUG */ | 41 | #ifdef DEBUG |
42 | void luaM_query (void); | ||
43 | #endif | ||
42 | 44 | ||
43 | 45 | ||
44 | #endif | 46 | #endif |