diff options
Diffstat (limited to 'lua/lgc.h')
-rw-r--r-- | lua/lgc.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* -** $Id: lgc.h,v 1.1 2004/03/16 21:58:30 niemeyer Exp $ +** $Id: lgc.h,v 1.2 2004/03/19 21:14:32 niemeyer Exp $ ** Garbage Collector ** See Copyright Notice in lua.h */ @@ -15,7 +15,7 @@ if (G(L)->nblocks >= G(L)->GCthreshold) luaC_collectgarbage(L); } -void luaC_separateudata (lua_State *L); +size_t luaC_separateudata (lua_State *L); void luaC_callGCTM (lua_State *L); void luaC_sweep (lua_State *L, int all); void luaC_collectgarbage (lua_State *L); |