summaryrefslogtreecommitdiff
path: root/func.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-03-14 12:54:20 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-03-14 12:54:20 -0300
commit1dc0e82aeb43d2265fcb6834430e8471729c77e2 (patch)
tree8bb9f7280481321955091c4e5f5986f90f72a683 /func.h
parentc2eb02aaf6f0c852b5528a6d47d098af103a6258 (diff)
downloadlua-github-1dc0e82aeb43d2265fcb6834430e8471729c77e2.tar.gz
"freefunc" now is public.
Diffstat (limited to 'func.h')
-rw-r--r--func.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/func.h b/func.h
index d8d339bc..74e954c7 100644
--- a/func.h
+++ b/func.h
@@ -1,5 +1,5 @@
/*
-** $Id: $
+** $Id: func.h,v 1.7 1996/03/08 12:04:04 roberto Exp roberto $
*/
#ifndef func_h
@@ -7,6 +7,7 @@
#include "types.h"
#include "lua.h"
+#include "tree.h"
typedef struct LocVar
{
@@ -33,6 +34,7 @@ Long luaI_funccollector (void);
void luaI_insertfunction (TFunc *f);
void luaI_initTFunc (TFunc *f);
+void luaI_freefunc (TFunc *f);
void luaI_registerlocalvar (TaggedString *varname, int line);
void luaI_unregisterlocalvar (int line);