diff options
author | marha <marha@users.sourceforge.net> | 2009-12-10 15:49:55 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-12-10 15:49:55 +0000 |
commit | 0925cb4f76a1667fb3777efbe6a0e0e69c4cca3c (patch) | |
tree | bbe20184d5104c1489cb84815f2f27dc4437be08 /tools/mhmake/src/flexskel.h | |
parent | 0540eb5a1f795c0f5265d244ec979b8ddfcf3acb (diff) | |
download | vcxsrv-0925cb4f76a1667fb3777efbe6a0e0e69c4cca3c.tar.gz vcxsrv-0925cb4f76a1667fb3777efbe6a0e0e69c4cca3c.tar.bz2 vcxsrv-0925cb4f76a1667fb3777efbe6a0e0e69c4cca3c.zip |
Added 64-bit compilation
Removed autodep optimisation.
Diffstat (limited to 'tools/mhmake/src/flexskel.h')
-rw-r--r-- | tools/mhmake/src/flexskel.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/mhmake/src/flexskel.h b/tools/mhmake/src/flexskel.h index 58d807f6a..563e469c7 100644 --- a/tools/mhmake/src/flexskel.h +++ b/tools/mhmake/src/flexskel.h @@ -329,7 +329,7 @@ class YY_@_CLASS YY_@_INHERIT private:/* data */
YY_@_CHAR *yy_c_buf_p;
YY_@_CHAR yy_hold_char;
- int yy_n_chars;
+ size_t yy_n_chars;
int yy_init;
int yy_start;
int yy_did_buffer_switch_on_eof;
@@ -356,7 +356,7 @@ protected:/* non virtual */ =0
#endif
;
- virtual int YY_@_INPUT(char *buf,int &result,int max_size)
+ virtual size_t YY_@_INPUT(char *buf,size_t &result,size_t max_size)
#ifdef YY_@_INPUT_PURE
=0
#endif
@@ -373,7 +373,7 @@ protected:/* non virtual */ ;
public:
YY_@_CHAR *YY_@_TEXT;
- int YY_@_LENG;
+ size_t YY_@_LENG;
YY_@_IFILE *YY_@_IN;
YY_@_OFILE *YY_@_OUT;
YY_@_LEX_RETURN YY_@_LEX ( YY_@_LEX_PARAM);
|