Comment out flexdef.h

This commit is contained in:
Johnny Tang
1994-11-23 19:31:39 +00:00
parent 47fa7a4fa4
commit 2e16f3a6d7
4 changed files with 15 additions and 7 deletions

View File

@@ -194,16 +194,18 @@ typedef struct yy_buffer_state *YY_BUFFER_STATE;
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
/*
#ifndef lint
static char rcsid[] =
"@(#) $Header$ (LBL)";
#endif
#undef yywrap
#include "flexdef.h"
#include "parse.h"
*/
#undef yywrap
#define ACTION_ECHO fprintf( temp_action_file, "%s", yytext )
#define MARK_END_OF_PROLOG fprintf( temp_action_file, "%%%% end of prolog\n" );

View File

@@ -32,13 +32,14 @@ char copyright[] =
All rights reserved.\n";
#endif /* not lint */
/*
#ifndef lint
static char rcsid[] =
"@(#) $Header$ (LBL)";
#endif
#include "flexdef.h"
*/
static char flex_version[] = "2.3";

View File

@@ -194,15 +194,18 @@ typedef struct yy_buffer_state *YY_BUFFER_STATE;
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
/*
#ifndef lint
static char rcsid[] =
"@(#) $Header$ (LBL)";
#endif
#include "flexdef.h"
#include <parse.h>
*/
#undef yywrap
#include "flexdef.h"
#include <parse.h>
#define ACTION_ECHO fprintf( temp_action_file, "%s", yytext )
#define MARK_END_OF_PROLOG fprintf( temp_action_file, "%%%% end of prolog\n" );

View File

@@ -26,6 +26,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
/*
#ifndef lint
static char rcsid[] =
"@(#) $Header$ (LBL)";
@@ -34,7 +35,7 @@ static char rcsid[] =
#include <ctype.h>
#include "flexdef.h"
#include "parse.h"
*/
/* ANSI C does not guarantee that isascii() is defined */
#ifndef isascii
@@ -214,3 +215,4 @@ int yylex()
return ( toktype );
}