Initial revision

This commit is contained in:
ceriel
1988-10-26 15:21:11 +00:00
parent a7a80689bf
commit 01252cb592
60 changed files with 11297 additions and 0 deletions

49
lang/pc/comp/next.c Normal file
View 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