diff options
Diffstat (limited to 'hl/src/H5LTanalyze.l')
-rw-r--r-- | hl/src/H5LTanalyze.l | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hl/src/H5LTanalyze.l b/hl/src/H5LTanalyze.l index 97cde91..15e316e 100644 --- a/hl/src/H5LTanalyze.l +++ b/hl/src/H5LTanalyze.l @@ -22,7 +22,12 @@ int my_yyinput(char *, int); #undef YY_INPUT #define YY_INPUT(b, r, ms) (r=my_yyinput(b, ms)) #define token(x) (int)x + +#ifdef YY_BUF_SIZE +#undef YY_BUF_SIZE +#endif #define YY_BUF_SIZE 262144 /*Define read buffer to be 256K*/ + extern char *myinput; extern int input_len; |