aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-04-25 16:24:10 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-04-25 16:24:10 -0300
commit8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc (patch)
tree4ad0b914b84005b706fb6c9af302132d789b133a /lstate.h
parent8c3c3e769195facf6b8c061f4fab1d86e6606be8 (diff)
downloadlua-8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc.tar.gz
lua-8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc.tar.bz2
lua-8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc.zip
added LUAI_FUNC to functions not in the API
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