diff options
Diffstat (limited to 'lmem.h')
-rw-r--r-- | lmem.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lmem.h,v 1.24 2001/09/07 17:30:16 roberto Exp $ | 2 | ** $Id: lmem.h,v 1.25 2001/11/28 20:13:13 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 | */ |
@@ -13,6 +13,9 @@ | |||
13 | #include "llimits.h" | 13 | #include "llimits.h" |
14 | #include "lua.h" | 14 | #include "lua.h" |
15 | 15 | ||
16 | #define MEMERRMSG "not enough memory" | ||
17 | |||
18 | |||
16 | void *luaM_realloc (lua_State *L, void *oldblock, lu_mem oldsize, lu_mem size); | 19 | void *luaM_realloc (lua_State *L, void *oldblock, lu_mem oldsize, lu_mem size); |
17 | 20 | ||
18 | void *luaM_growaux (lua_State *L, void *block, int *size, int size_elem, | 21 | void *luaM_growaux (lua_State *L, void *block, int *size, int size_elem, |