next.c 865 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #include "debug.h"
  2. struct lab *h_lab = 0;
  3. #ifdef DEBUG
  4. int cnt_lab = 0;
  5. #endif
  6. struct forwtype *h_forwtype = 0;
  7. #ifdef DEBUG
  8. int cnt_forwtype = 0;
  9. #endif
  10. struct def *h_def = 0;
  11. #ifdef DEBUG
  12. int cnt_def = 0;
  13. #endif
  14. struct withdesig *h_withdesig = 0;
  15. #ifdef DEBUG
  16. int cnt_withdesig = 0;
  17. #endif
  18. struct node *h_node = 0;
  19. #ifdef DEBUG
  20. int cnt_node = 0;
  21. #endif
  22. struct scope *h_scope = 0;
  23. #ifdef DEBUG
  24. int cnt_scope = 0;
  25. #endif
  26. struct scopelist *h_scopelist = 0;
  27. #ifdef DEBUG
  28. int cnt_scopelist = 0;
  29. #endif
  30. struct paramlist *h_paramlist = 0;
  31. #ifdef DEBUG
  32. int cnt_paramlist = 0;
  33. #endif
  34. struct type *h_type = 0;
  35. #ifdef DEBUG
  36. int cnt_type = 0;
  37. #endif
  38. struct case_hdr *h_case_hdr = 0;
  39. #ifdef DEBUG
  40. int cnt_case_hdr = 0;
  41. #endif
  42. struct case_entry *h_case_entry = 0;
  43. #ifdef DEBUG
  44. int cnt_case_entry = 0;
  45. #endif
  46. struct tmpvar *h_tmpvar = 0;
  47. #ifdef DEBUG
  48. int cnt_tmpvar = 0;
  49. #endif