diff options
author | nyamatongwe <unknown> | 2011-11-14 08:31:31 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-11-14 08:31:31 +1100 |
commit | 15760ec7cdc073d0c0b0abdf0c4e8bbcd41bba5a (patch) | |
tree | a64953ddb25e8df645a4e128588826cbf8304744 | |
parent | 2cfd6b9cdf2493f980d98bd353224f7055665c53 (diff) | |
download | scintilla-mirror-15760ec7cdc073d0c0b0abdf0c4e8bbcd41bba5a.tar.gz |
Added ctype to avoid compilation problems for Padre.
-rw-r--r-- | lexers/LexAda.cxx | 1 | ||||
-rw-r--r-- | lexers/LexMPT.cxx | 1 | ||||
-rw-r--r-- | lexers/LexSpice.cxx | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/lexers/LexAda.cxx b/lexers/LexAda.cxx index e109514cb..49eb2c68b 100644 --- a/lexers/LexAda.cxx +++ b/lexers/LexAda.cxx @@ -10,6 +10,7 @@ #include <stdio.h> #include <stdarg.h> #include <assert.h> +#include <ctype.h> #include <string> diff --git a/lexers/LexMPT.cxx b/lexers/LexMPT.cxx index c09ac7ab3..b3eed3442 100644 --- a/lexers/LexMPT.cxx +++ b/lexers/LexMPT.cxx @@ -12,6 +12,7 @@ #include <stdio.h> #include <stdarg.h> #include <assert.h> +#include <ctype.h> #include <string> diff --git a/lexers/LexSpice.cxx b/lexers/LexSpice.cxx index cb1e65828..5fb5dd776 100644 --- a/lexers/LexSpice.cxx +++ b/lexers/LexSpice.cxx @@ -10,6 +10,7 @@ #include <stdio.h> #include <stdarg.h> #include <assert.h> +#include <ctype.h> #include <string> |