aboutsummaryrefslogtreecommitdiff
path: root/table.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-23 12:32:00 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-23 12:32:00 -0200
commitd490555ec9d5efb886211f735694d4e7dd0c166d (patch)
treef9b75cdc3a6d4132dddc884280ae218a7f9beb5c /table.h
parentad0ec203f60df5e2f8a3b294c9e8c1014280b8f1 (diff)
downloadlua-d490555ec9d5efb886211f735694d4e7dd0c166d.tar.gz
lua-d490555ec9d5efb886211f735694d4e7dd0c166d.tar.bz2
lua-d490555ec9d5efb886211f735694d4e7dd0c166d.zip
garbage collection tag for strings organized in struct TaggedString
Diffstat (limited to 'table.h')
-rw-r--r--table.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/table.h b/table.h
index 0c2f0c0a..d65751f8 100644
--- a/table.h
+++ b/table.h
@@ -1,16 +1,17 @@
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.7 1994/11/17 13:58:57 roberto Exp roberto $ 4** $Id: table.h,v 2.8 1994/11/18 19:27:38 roberto Exp roberto $
5*/ 5*/
6 6
7#ifndef table_h 7#ifndef table_h
8#define table_h 8#define table_h
9 9
10#include "tree.h" 10#include "tree.h"
11#include "opcode.h"
11 12
12extern Symbol *lua_table; 13extern Symbol *lua_table;
13extern char **lua_constant; 14extern TaggedString **lua_constant;
14 15
15extern char *lua_file[]; 16extern char *lua_file[];
16extern int lua_nfile; 17extern int lua_nfile;