diff options
author | nyamatongwe <devnull@localhost> | 2009-07-21 09:18:30 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-07-21 09:18:30 +0000 |
commit | 9ef582ea19250550cf8cc58506eb23b7933867db (patch) | |
tree | 2619cedcf9ef02d3d87f579992c085f57eb2b7f4 /src | |
parent | d6c7ef2346d60ad934231d6b4bf6d342b278a0d4 (diff) | |
download | scintilla-mirror-9ef582ea19250550cf8cc58506eb23b7933867db.tar.gz |
Need stdlib.h for size_t for some compilers.
Diffstat (limited to 'src')
-rw-r--r-- | src/CharClassify.cxx | 1 | ||||
-rw-r--r-- | src/RESearch.cxx | 2 |
2 files changed, 3 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" diff --git a/src/RESearch.cxx b/src/RESearch.cxx index 6c27f1a5a..200bba516 100644 --- a/src/RESearch.cxx +++ b/src/RESearch.cxx @@ -198,6 +198,8 @@ * matches: foo-foo fo-fo fob-fob foobar-foobar ... */ +#include <stdlib.h> + #include "CharClassify.h" #include "RESearch.h" |