Initial revision
This commit is contained in:
49
lang/pc/comp/next.c
Normal file
49
lang/pc/comp/next.c
Normal file
@@ -0,0 +1,49 @@
|
||||
#include "debug.h"
|
||||
struct lab *h_lab = 0;
|
||||
#ifdef DEBUG
|
||||
int cnt_lab = 0;
|
||||
#endif
|
||||
struct forwtype *h_forwtype = 0;
|
||||
#ifdef DEBUG
|
||||
int cnt_forwtype = 0;
|
||||
#endif
|
||||
struct def *h_def = 0;
|
||||
#ifdef DEBUG
|
||||
int cnt_def = 0;
|
||||
#endif
|
||||
struct withdesig *h_withdesig = 0;
|
||||
#ifdef DEBUG
|
||||
int cnt_withdesig = 0;
|
||||
#endif
|
||||
struct node *h_node = 0;
|
||||
#ifdef DEBUG
|
||||
int cnt_node = 0;
|
||||
#endif
|
||||
struct scope *h_scope = 0;
|
||||
#ifdef DEBUG
|
||||
int cnt_scope = 0;
|
||||
#endif
|
||||
struct scopelist *h_scopelist = 0;
|
||||
#ifdef DEBUG
|
||||
int cnt_scopelist = 0;
|
||||
#endif
|
||||
struct paramlist *h_paramlist = 0;
|
||||
#ifdef DEBUG
|
||||
int cnt_paramlist = 0;
|
||||
#endif
|
||||
struct type *h_type = 0;
|
||||
#ifdef DEBUG
|
||||
int cnt_type = 0;
|
||||
#endif
|
||||
struct case_hdr *h_case_hdr = 0;
|
||||
#ifdef DEBUG
|
||||
int cnt_case_hdr = 0;
|
||||
#endif
|
||||
struct case_entry *h_case_entry = 0;
|
||||
#ifdef DEBUG
|
||||
int cnt_case_entry = 0;
|
||||
#endif
|
||||
struct tmpvar *h_tmpvar = 0;
|
||||
#ifdef DEBUG
|
||||
int cnt_tmpvar = 0;
|
||||
#endif
|
||||
Reference in New Issue
Block a user