summaryrefslogtreecommitdiff
path: root/flexdef.h
diff options
context:
space:
mode:
authorvern <vern>1994-11-24 15:50:03 +0000
committervern <vern>1994-11-24 15:50:03 +0000
commit6a227af04fcf7c46192c1820338f6c3d71b4ebf9 (patch)
treeb73a1860bf170bfea2a62d6563a7e1899044e075 /flexdef.h
parent306d674ee84a82724a1646e620c5df43bfcbe211 (diff)
downloadflex-6a227af04fcf7c46192c1820338f6c3d71b4ebf9.tar.gz
Added do_stdinit
Diffstat (limited to 'flexdef.h')
-rw-r--r--flexdef.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/flexdef.h b/flexdef.h
index c51d00b..b70c914 100644
--- a/flexdef.h
+++ b/flexdef.h
@@ -26,7 +26,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-/* @(#) $Header: /cvsroot/flex/flex/flexdef.h,v 2.41 1994/11/05 17:10:56 vern Exp $ (LBL) */
+/* @(#) $Header: /cvsroot/flex/flex/flexdef.h,v 2.42 1994/11/24 15:50:03 vern Exp $ (LBL) */
#include <stdio.h>
#include <ctype.h>
@@ -395,6 +395,7 @@ extern int yymore_really_used, reject_really_used;
* outfilename - name of output file
* did_outfilename - whether outfilename was explicitly set
* prefix - the prefix used for externally visible names ("yy" by default)
+ * do_stdinit - whether to initialize yyin/yyout to stdin/stdout
* use_stdout - the -t flag
* input_files - array holding names of input files
* num_input_files - size of input_files array
@@ -417,7 +418,7 @@ extern int skel_ind;
extern char *infilename, *outfilename;
extern int did_outfilename;
extern char *prefix;
-extern int use_stdout;
+extern int do_stdinit, use_stdout;
extern char **input_files;
extern int num_input_files;
extern char *program_name;