Added "nflag".

This commit is contained in:
ceriel 1986-10-29 11:29:47 +00:00
parent ee27adc926
commit eedc332a04
2 changed files with 6 additions and 0 deletions

View file

@ -82,3 +82,4 @@ extern int nerrors;
extern string rec_file, incl_file;
extern p_term terms;
extern p_link links;
extern int nflag;

View file

@ -50,6 +50,7 @@ extern install();
# ifndef NDEBUG
extern badassertion();
# endif not NDEBUG
int nflag;
main(argc,argv) register string argv[]; {
register string arg;
@ -89,6 +90,10 @@ main(argc,argv) register string argv[]; {
incl_file = ++arg;
break;
# endif not NDEBUG
case 'n':
case 'N':
nflag = 1;
continue;
case 'x':
case 'X':
ntneeded = 1;