aboutsummaryrefslogtreecommitdiff
path: root/tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'tree.h')
-rw-r--r--tree.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tree.h b/tree.h
index 14bf9959..149819e9 100644
--- a/tree.h
+++ b/tree.h
@@ -1,7 +1,7 @@
1/* 1/*
2** tree.h 2** tree.h
3** TecCGraf - PUC-Rio 3** TecCGraf - PUC-Rio
4** $Id: tree.h,v 1.5 1994/11/18 19:27:38 roberto Exp roberto $ 4** $Id: tree.h,v 1.6 1994/11/23 14:31:11 roberto Stab roberto $
5*/ 5*/
6 6
7#ifndef tree_h 7#ifndef tree_h
@@ -13,6 +13,7 @@
13 13
14typedef struct TaggedString 14typedef struct TaggedString
15{ 15{
16 unsigned long hash; /* 0 if not initialized */
16 char marked; /* for garbage collection */ 17 char marked; /* for garbage collection */
17 char str[1]; /* \0 byte already reserved */ 18 char str[1]; /* \0 byte already reserved */
18} TaggedString; 19} TaggedString;