--- stack/stack.h 2002/03/12 14:06:05 1.12 +++ stack/stack.h 2002/03/12 14:53:19 1.13 @@ -25,6 +25,7 @@ /* First, define some types. */ struct cons_struct; +struct symbol_struct; /* A value of some type */ typedef struct { @@ -48,6 +49,7 @@ union { void *ptr; /* Pointer to the content */ struct cons_struct *c; /* ...or a pointer to a cons cell */ + struct symbol_struct *sym; /* ...or a pointer to a symbol */ int i; /* ...or an integer */ float f; /* ...or a floating point number */ } content; /* Stores a pointer or an integer */