summaryrefslogtreecommitdiff
path: root/flex.skl
diff options
context:
space:
mode:
authorJohn Millaway <john43@users.sourceforge.net>2003-01-09 22:20:45 +0000
committerJohn Millaway <john43@users.sourceforge.net>2003-01-09 22:20:45 +0000
commit0cfd40e1214f9f5f453bff100f309d05ba10fc4d (patch)
tree6a8b8cddba4658c9b824755d3bd53df25cbd8265 /flex.skl
parentf6c15fbd76f38d13d078741d5222f7a2e4f8aa3f (diff)
Changed type of yyleng from size_t to int. This fixes bug in PostgreSQL compilation.
Diffstat (limited to 'flex.skl')
-rw-r--r--flex.skl4
1 files changed, 2 insertions, 2 deletions
diff --git a/flex.skl b/flex.skl
index 802d5ef..eaec123 100644
--- a/flex.skl
+++ b/flex.skl
@@ -246,7 +246,7 @@ typedef struct yy_buffer_state *YY_BUFFER_STATE;
#endif
%if-not-reentrant
-extern size_t yyleng;
+extern int yyleng;
%endif
%push
@@ -415,7 +415,7 @@ static char yy_hold_char;
static int yy_n_chars; /* number of characters read into yy_ch_buf */
-size_t yyleng;
+int yyleng;
/* Points to current character in buffer. */
static char *yy_c_buf_p = (char *) 0;