clean-up code generation suppression for lint

This commit is contained in:
dick
1990-09-18 14:29:42 +00:00
parent a246152240
commit 0e90ae224a
11 changed files with 128 additions and 29 deletions

View File

@@ -6,9 +6,14 @@
/* STATEMENT SYNTAX PARSER */
{
#include <em.h>
#include "lint.h"
#ifndef LINT
#include <em.h>
#else
#include "em_lint.h"
#include "l_lint.h"
#endif LINT
#include "debug.h"
#include "botch_free.h"
@@ -21,9 +26,6 @@
#include "code.h"
#include "stack.h"
#include "def.h"
#ifdef LINT
#include "l_lint.h"
#endif LINT
extern int level;
}