summaryrefslogtreecommitdiff
path: root/flexdef.h
diff options
context:
space:
mode:
authorwlestes <wlestes>2012-03-02 21:44:21 +0000
committerwlestes <wlestes>2012-03-02 21:44:21 +0000
commit5c4747b2977c23738b5de15b17559f371bb51c7e (patch)
treeebea62854600ccd91fd2390590926cf3bc9f1295 /flexdef.h
parentb66d5b5cc9946c39694fe70faab356ab3de54a20 (diff)
downloadflex-5c4747b2977c23738b5de15b17559f371bb51c7e.tar.gz
Remove unneeded tracking of line/column output; patch from Tim Landsheet scfc_de
Diffstat (limited to 'flexdef.h')
-rw-r--r--flexdef.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/flexdef.h b/flexdef.h
index 572fe2a..0e81410 100644
--- a/flexdef.h
+++ b/flexdef.h
@@ -416,7 +416,6 @@ extern int yymore_really_used, reject_really_used;
* dataline - number of contiguous lines of data in current data
* statement. Used to generate readable -f output
* linenum - current input line number
- * out_linenum - current output line number
* skelfile - the skeleton file
* skel - compiled-in skeleton array
* skel_ind - index into "skel" array, if skelfile is nil
@@ -444,7 +443,7 @@ extern int yymore_really_used, reject_really_used;
* to "action_array"
*/
-extern int datapos, dataline, linenum, out_linenum;
+extern int datapos, dataline, linenum;
extern FILE *skelfile, *yyin, *backing_up_file;
extern const char *skel[];
extern int skel_ind;
@@ -939,7 +938,6 @@ extern void out PROTO ((const char *));
extern void out_dec PROTO ((const char *, int));
extern void out_dec2 PROTO ((const char *, int, int));
extern void out_hex PROTO ((const char *, unsigned int));
-extern void out_line_count PROTO ((const char *));
extern void out_str PROTO ((const char *, const char *));
extern void out_str3
PROTO ((const char *, const char *, const char *, const char *));