From d55bb795faaa3a632aeb92fd29fc12b796ae7968 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 23 Feb 2005 14:30:22 -0300 Subject: details --- lstate.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index 995733d9..481cd4fc 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.14 2005/02/11 20:03:35 roberto Exp roberto $ +** $Id: lstate.h,v 2.15 2005/02/18 12:40:02 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -67,8 +67,8 @@ typedef struct CallInfo { */ typedef struct global_State { stringtable strt; /* hash table for strings */ - lua_Alloc realloc; /* function to reallocate memory */ - void *ud; /* auxiliary data to `realloc' */ + lua_Alloc frealloc; /* function to reallocate memory */ + void *ud; /* auxiliary data to `frealloc' */ lu_byte currentwhite; lu_byte gcstate; /* state of garbage collector */ GCObject *rootgc; /* list of all collectable objects */ -- cgit v1.2.3-55-g6feb