diff options
author | nyamatongwe <unknown> | 2011-11-17 09:09:08 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-11-17 09:09:08 +1100 |
commit | 729aa9d537ac1696806563ddb9c1c9779e31927e (patch) | |
tree | 4fbd56d3e244d759ef90d14d00f74b69c5295d2d | |
parent | 28c1fc8c7506c2ba873f9ff5d8af06480b228abd (diff) | |
download | scintilla-mirror-729aa9d537ac1696806563ddb9c1c9779e31927e.tar.gz |
Include system header needed by VS2005 for ceil function.
From Greg Smith.
-rw-r--r-- | win32/PlatWin.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index b95d0e62c..5671d683e 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -12,6 +12,7 @@ #include <stdio.h> #include <time.h> #include <limits.h> +#include <math.h> #include <vector> #include <map> |