/[bison]/bison/src/gram.c
ViewVC logotype

Diff of /bison/src/gram.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.6 by akim, Tue Nov 7 16:28:46 2000 UTC revision 1.6.2.1 by akim, Sat Sep 22 17:43:26 2001 UTC
# Line 31  int nsyms; Line 31  int nsyms;
31  int ntokens;  int ntokens;
32  int nvars;  int nvars;
33    
34  short *ritem;  short *ritem = NULL;
35  short *rlhs;  short *rlhs = NULL;
36  short *rrhs;  short *rrhs = NULL;
37  short *rprec;  short *rprec = NULL;
38  short *rprecsym;  short *rprecsym = NULL;
39  short *sprec;  short *sprec = NULL;
40  short *rassoc;  short *rassoc = NULL;
41  short *sassoc;  short *sassoc = NULL;
42  short *token_translations;  short *token_translations = NULL;
43  short *rline;  short *rline = NULL;
44    
45  int start_symbol;  int start_symbol;
46    
 int translations;  
   
47  int max_user_token_number;  int max_user_token_number;
48    
49  int semantic_parser;  int semantic_parser;
# Line 54  int pure_parser; Line 52  int pure_parser;
52    
53  int error_token_number;  int error_token_number;
54    
55  /* This is to avoid linker problems which occur on VMS when using GCC,  /* Free all the memory associated to these pointers. */
    when the file in question contains data definitions only.  */  
56    
57  void  void
58  dummy (void)  gram_free (void)
59  {  {
60    
61  }  }

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.6.2.1

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26