From 39b79783297bee79db9853b63d199e120a009a8f Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 23 Feb 2001 14:17:25 -0300 Subject: first (big) step to support wide chars --- lmem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lmem.h') diff --git a/lmem.h b/lmem.h index 3dca8871..bf1d6836 100644 --- a/lmem.h +++ b/lmem.h @@ -1,5 +1,5 @@ /* -** $Id: lmem.h,v 1.20 2001/02/02 15:13:05 roberto Exp roberto $ +** $Id: lmem.h,v 1.21 2001/02/20 18:15:33 roberto Exp roberto $ ** Interface to Memory Manager ** See Copyright Notice in lua.h */ @@ -16,7 +16,7 @@ void *luaM_realloc (lua_State *L, void *oldblock, lu_mem oldsize, lu_mem size); void *luaM_growaux (lua_State *L, void *block, int *size, int size_elem, - int limit, const char *errormsg); + int limit, const l_char *errormsg); #define luaM_free(L, b, s) luaM_realloc(L, (b), (s), 0) #define luaM_freelem(L, b, t) luaM_realloc(L, (b), sizeof(t), 0) -- cgit v1.2.3-55-g6feb