diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-05-23 20:40:55 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-05-23 20:40:55 (GMT) |
commit | 5945a5a4486e9a72d1866f6d88a29973176e5de0 (patch) | |
tree | 4287e3baef7b4ad64bb99d1f8dd4fcef1284ab00 | |
parent | 44e3bbce96a41814c7fdbf9c8411475772ae843c (diff) | |
download | CMake-5945a5a4486e9a72d1866f6d88a29973176e5de0.zip CMake-5945a5a4486e9a72d1866f6d88a29973176e5de0.tar.gz CMake-5945a5a4486e9a72d1866f6d88a29973176e5de0.tar.bz2 |
ENH: add some includes for borland 6
-rw-r--r-- | Source/cmCTest.cxx | 1 | ||||
-rw-r--r-- | Source/cmMakefile.cxx | 2 | ||||
-rw-r--r-- | Source/cmStringCommand.cxx | 2 | ||||
-rw-r--r-- | Source/cmake.cxx | 1 |
4 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 780618a..1b5c8e6 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -24,6 +24,7 @@ # include "curl/curl.h" #endif +#include <stdlib.h> // required for atoi #include <stdio.h> #include <time.h> #include <math.h> diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index ab178a0..a71de1b 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -29,7 +29,7 @@ #include "cmVariableWatch.h" #include "cmake.h" #include <stdio.h> // required for sprintf - +#include <stdlib.h> // required for atoi // default is not to be building executables cmMakefile::cmMakefile() { diff --git a/Source/cmStringCommand.cxx b/Source/cmStringCommand.cxx index a4d5518..e8d6bc1 100644 --- a/Source/cmStringCommand.cxx +++ b/Source/cmStringCommand.cxx @@ -15,7 +15,7 @@ =========================================================================*/ #include "cmStringCommand.h" - +#include <stdlib.h> // required for atoi //---------------------------------------------------------------------------- bool cmStringCommand::InitialPass(std::vector<std::string> const& args) { diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 22e3f58..3cf1149 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -36,6 +36,7 @@ #endif #include <stdio.h> +#include <stdlib.h> // required for atoi #ifdef __APPLE__ #include <sys/types.h> |