summaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lstate.h b/lstate.h
index 6292d5e7..908abf70 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.18 2005/03/22 16:04:29 roberto Exp roberto $ 2** $Id: lstate.h,v 2.19 2005/04/05 13:41:29 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -160,8 +160,8 @@ union GCObject {
160#define obj2gco(v) (cast(GCObject *, (v))) 160#define obj2gco(v) (cast(GCObject *, (v)))
161 161
162 162
163lua_State *luaE_newthread (lua_State *L); 163LUAI_FUNC lua_State *luaE_newthread (lua_State *L);
164void luaE_freethread (lua_State *L, lua_State *L1); 164LUAI_FUNC void luaE_freethread (lua_State *L, lua_State *L1);
165 165
166#endif 166#endif
167 167