diff src/symtab.h @ 489:89ed09321d16

[project @ 1994-07-06 14:34:51 by jwe]
author jwe
date Wed, 06 Jul 1994 14:35:12 +0000
parents 393e95f46b51
children 88614b380d6e
line wrap: on
line diff
--- a/src/symtab.h
+++ b/src/symtab.h
@@ -46,6 +46,7 @@
 #define HASH_MASK (HASH_TABLE_SIZE - 1)
 
 class tree;
+class tree_fvc;
 class tree_builtin;
 class tree_constant;
 class tree_function;
@@ -87,7 +88,7 @@
   void unprotect (void);
   void make_eternal (void);
 
-  tree *def (void) const;
+  tree_fvc *def (void) const;
   char *help (void) const;
   void document (const char *h);
 
@@ -111,7 +112,7 @@
   unsigned read_only : 1;
 
   char *help_string;
-  tree *definition;
+  tree_fvc *definition;
   symbol_def *next_elem;
   int count;
 
@@ -137,7 +138,7 @@
 
   char *name (void) const;
   char *help (void) const; 
-  tree *def (void) const;
+  tree_fvc *def (void) const;
 
   void rename (const char *n);