aboutsummaryrefslogtreecommitdiff
path: root/table.h
diff options
context:
space:
mode:
authorWaldemar Celes <celes@tecgraf.puc-rio.br>1994-10-17 17:03:23 -0200
committerWaldemar Celes <celes@tecgraf.puc-rio.br>1994-10-17 17:03:23 -0200
commitf8c8159362f4bb8820908085adcb06900ef33b4c (patch)
tree2cbe498f152dad434973e4b718ba04dd08ca3b83 /table.h
parentd1c5f4294365e9c5dbcd7f57bd0e3d55b548329c (diff)
downloadlua-f8c8159362f4bb8820908085adcb06900ef33b4c.tar.gz
lua-f8c8159362f4bb8820908085adcb06900ef33b4c.tar.bz2
lua-f8c8159362f4bb8820908085adcb06900ef33b4c.zip
adaptative garbage collection.
Diffstat (limited to 'table.h')
-rw-r--r--table.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/table.h b/table.h
index 47be08c4..2ef50b0a 100644
--- a/table.h
+++ b/table.h
@@ -1,7 +1,7 @@
1/* 1/*
2** Module to control static tables 2** Module to control static tables
3** TeCGraf - PUC-Rio 3** TeCGraf - PUC-Rio
4** $Id: table.h,v 2.1 1994/04/20 22:07:57 celes Exp celes $ 4** $Id: table.h,v 2.2 1994/07/19 21:27:18 celes Exp $
5*/ 5*/
6 6
7#ifndef table_h 7#ifndef table_h
@@ -15,6 +15,7 @@ extern int lua_nfile;
15 15
16extern Word lua_block; 16extern Word lua_block;
17extern Word lua_nentity; 17extern Word lua_nentity;
18extern Word lua_recovered;
18 19
19 20
20void lua_initconstant (void); 21void lua_initconstant (void);