aboutsummaryrefslogtreecommitdiff
path: root/lgc.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lgc.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lgc.h b/lgc.h
index b7e00b38..2b96eb2a 100644
--- a/lgc.h
+++ b/lgc.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.h,v 2.30 2010/03/25 13:06:36 roberto Exp roberto $ 2** $Id: lgc.h,v 2.31 2010/04/29 17:32:40 roberto Exp roberto $
3** Garbage Collector 3** Garbage Collector
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -9,6 +9,7 @@
9 9
10 10
11#include "lobject.h" 11#include "lobject.h"
12#include "lstate.h"
12 13
13 14
14/* 15/*
@@ -120,6 +121,6 @@ LUAI_FUNC GCObject *luaC_newobj (lua_State *L, int tt, size_t sz,
120LUAI_FUNC void luaC_barrierf (lua_State *L, GCObject *o, GCObject *v); 121LUAI_FUNC void luaC_barrierf (lua_State *L, GCObject *o, GCObject *v);
121LUAI_FUNC void luaC_barrierback (lua_State *L, Table *t); 122LUAI_FUNC void luaC_barrierback (lua_State *L, Table *t);
122LUAI_FUNC void luaC_checkfinalizer (lua_State *L, Udata *u); 123LUAI_FUNC void luaC_checkfinalizer (lua_State *L, Udata *u);
123 124LUAI_FUNC void luaC_checkupvalcolor (global_State *g, UpVal *uv);
124 125
125#endif 126#endif