summaryrefslogtreecommitdiff
path: root/lib/lua/includes
diff options
context:
space:
mode:
authorpixel <pixel>2004-12-27 19:52:23 +0000
committerpixel <pixel>2004-12-27 19:52:23 +0000
commitffbd44960ec46c3c0def38821623a62d696c6018 (patch)
tree1b8dca54fd64287cda5095348160011eed41f14a /lib/lua/includes
parent73b826216433355c36cac2b679dbbe755df53284 (diff)
Updating lua to 5.0.2
Diffstat (limited to 'lib/lua/includes')
-rw-r--r--lib/lua/includes/lgc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lua/includes/lgc.h b/lib/lua/includes/lgc.h
index 43ae521..d3eb244 100644
--- a/lib/lua/includes/lgc.h
+++ b/lib/lua/includes/lgc.h
@@ -1,5 +1,5 @@
/*
-** $Id: lgc.h,v 1.4 2004-11-27 21:46:06 pixel Exp $
+** $Id: lgc.h,v 1.5 2004-12-27 19:52:23 pixel 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);