summaryrefslogtreecommitdiff
path: root/lfunc.h
diff options
context:
space:
mode:
Diffstat (limited to 'lfunc.h')
-rw-r--r--lfunc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lfunc.h b/lfunc.h
index 4a7a6ac9..b6e14e26 100644
--- a/lfunc.h
+++ b/lfunc.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lfunc.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $ 2** $Id: lfunc.h,v 1.2 1997/09/26 16:46:20 roberto Exp roberto $
3** Lua Function structures 3** Lua Function structures
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -19,6 +19,7 @@ TProtoFunc *luaF_newproto (void);
19Closure *luaF_newclosure (int nelems); 19Closure *luaF_newclosure (int nelems);
20void luaF_freeproto (TProtoFunc *l); 20void luaF_freeproto (TProtoFunc *l);
21void luaF_freeclosure (Closure *l); 21void luaF_freeclosure (Closure *l);
22void luaF_simpleclosure (TObject *o);
22 23
23char *luaF_getlocalname (TProtoFunc *func, int local_number, int line); 24char *luaF_getlocalname (TProtoFunc *func, int local_number, int line);
24 25