diff options
Diffstat (limited to 'lfunc.h')
-rw-r--r-- | lfunc.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lfunc.h,v 2.12 2014/02/15 13:12:01 roberto Exp roberto $ | 2 | ** $Id: lfunc.h,v 2.13 2014/02/18 13:39:37 roberto Exp roberto $ |
3 | ** Auxiliary functions to manipulate prototypes and closures | 3 | ** Auxiliary functions to manipulate prototypes and closures |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -41,8 +41,8 @@ struct UpVal { | |||
41 | 41 | ||
42 | 42 | ||
43 | LUAI_FUNC Proto *luaF_newproto (lua_State *L); | 43 | LUAI_FUNC Proto *luaF_newproto (lua_State *L); |
44 | LUAI_FUNC Closure *luaF_newCclosure (lua_State *L, int nelems); | 44 | LUAI_FUNC CClosure *luaF_newCclosure (lua_State *L, int nelems); |
45 | LUAI_FUNC Closure *luaF_newLclosure (lua_State *L, int nelems); | 45 | LUAI_FUNC LClosure *luaF_newLclosure (lua_State *L, int nelems); |
46 | LUAI_FUNC void luaF_initupvals (lua_State *L, LClosure *cl); | 46 | LUAI_FUNC void luaF_initupvals (lua_State *L, LClosure *cl); |
47 | LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level); | 47 | LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level); |
48 | LUAI_FUNC void luaF_close (lua_State *L, StkId level); | 48 | LUAI_FUNC void luaF_close (lua_State *L, StkId level); |