diff options
Diffstat (limited to 'tools/preproc/preproc.h')
-rw-r--r-- | tools/preproc/preproc.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/preproc/preproc.h b/tools/preproc/preproc.h index 926748efd..515f64e07 100644 --- a/tools/preproc/preproc.h +++ b/tools/preproc/preproc.h @@ -21,6 +21,8 @@ #ifndef PREPROC_H #define PREPROC_H +#include <cstdio> +#include <cstdlib> #include "charmap.h" #ifdef _MSC_VER @@ -44,7 +46,7 @@ do \ #endif // _MSC_VER const int kMaxPath = 256; -const int kMaxStringLength = 256; +const int kMaxStringLength = 1024; const unsigned long kMaxCharmapSequenceLength = 16; extern Charmap* g_charmap; |