diff options
author | nyamatongwe <unknown> | 2009-07-21 09:18:30 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-07-21 09:18:30 +0000 |
commit | 3a729f21c1c31f067b93897e83d887fe35cbe7a1 (patch) | |
tree | 2619cedcf9ef02d3d87f579992c085f57eb2b7f4 /src/CharClassify.cxx | |
parent | 7b7af48a7681ab335ba2c53ffa48ab053ddf4c86 (diff) | |
download | scintilla-mirror-3a729f21c1c31f067b93897e83d887fe35cbe7a1.tar.gz |
Need stdlib.h for size_t for some compilers.
Diffstat (limited to 'src/CharClassify.cxx')
-rw-r--r-- | src/CharClassify.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CharClassify.cxx b/src/CharClassify.cxx index 42a0ff10e..bbd25a0f8 100644 --- a/src/CharClassify.cxx +++ b/src/CharClassify.cxx @@ -5,6 +5,7 @@ // Copyright 2006 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. +#include <stdlib.h> #include <ctype.h> #include "CharClassify.h" |