[BACK]Return to lr0.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / yacc

Diff for /src/usr.bin/yacc/lr0.c between version 1.5 and 1.6

version 1.5, 2001/11/19 19:02:18 version 1.6, 2002/02/16 21:28:00
Line 56 
Line 56 
 shifts *first_shift;  shifts *first_shift;
 reductions *first_reduction;  reductions *first_reduction;
   
 int get_state __P((int));  int get_state(int);
 core *new_state __P((int));  core *new_state(int);
   
 void allocate_itemsets __P((void));  void allocate_itemsets(void);
 void allocate_storage __P((void));  void allocate_storage(void);
 void append_states __P((void));  void append_states(void);
 void free_storage __P((void));  void free_storage(void);
 void generate_states __P((void));  void generate_states(void);
 void initialize_states __P((void));  void initialize_states(void);
 void new_itemsets __P((void));  void new_itemsets(void);
 void show_cores __P((void));  void show_cores(void);
 void show_ritems __P((void));  void show_ritems(void);
 void show_rrhs __P((void));  void show_rrhs(void);
 void show_shifts __P((void));  void show_shifts(void);
 void save_shifts __P((void));  void save_shifts(void);
 void save_reductions __P((void));  void save_reductions(void);
 void set_derives __P((void));  void set_derives(void);
 void print_derives __P((void));  void print_derives(void);
 void set_nullable __P((void));  void set_nullable(void);
 void free_derives __P((void));  void free_derives(void);
 void free_nullable __P((void));  void free_nullable(void);
   
 static core **state_set;  static core **state_set;
 static core *this_state;  static core *this_state;

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