diff options
Diffstat (limited to 'src/lmem.h')
-rw-r--r-- | src/lmem.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* -** $Id: lmem.h,v 1.35 2009/12/16 16:42:58 roberto Exp $ +** $Id: lmem.h,v 1.36 2010/04/08 17:16:46 roberto Exp $ ** Interface to Memory Manager ** See Copyright Notice in lua.h */ @@ -13,8 +13,6 @@ #include "llimits.h" #include "lua.h" -#define MEMERRMSG "not enough memory" - #define luaM_reallocv(L,b,on,n,e) \ ((cast(size_t, (n)+1) <= MAX_SIZET/(e)) ? /* +1 to avoid warnings */ \ |