aboutsummaryrefslogtreecommitdiff
path: root/lfunc.h
diff options
context:
space:
mode:
Diffstat (limited to 'lfunc.h')
-rw-r--r--lfunc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lfunc.h b/lfunc.h
index 3ca72075..5951f9ea 100644
--- a/lfunc.h
+++ b/lfunc.h
@@ -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
43LUAI_FUNC Proto *luaF_newproto (lua_State *L); 43LUAI_FUNC Proto *luaF_newproto (lua_State *L);
44LUAI_FUNC Closure *luaF_newCclosure (lua_State *L, int nelems); 44LUAI_FUNC CClosure *luaF_newCclosure (lua_State *L, int nelems);
45LUAI_FUNC Closure *luaF_newLclosure (lua_State *L, int nelems); 45LUAI_FUNC LClosure *luaF_newLclosure (lua_State *L, int nelems);
46LUAI_FUNC void luaF_initupvals (lua_State *L, LClosure *cl); 46LUAI_FUNC void luaF_initupvals (lua_State *L, LClosure *cl);
47LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level); 47LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level);
48LUAI_FUNC void luaF_close (lua_State *L, StkId level); 48LUAI_FUNC void luaF_close (lua_State *L, StkId level);