diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2010-12-17 14:14:25 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2010-12-17 14:14:25 (GMT) |
commit | af12f83d80412141117a0e84614a06af9bae68ae (patch) | |
tree | 6d51ec3a85ed4a42b68aa1a9d9f3e7021e58e3e1 /Tests/TestsWorkingDirectory | |
parent | 5597aa24f1e4c00aab39d1dd3a8d3d9ff0a8f582 (diff) | |
download | CMake-af12f83d80412141117a0e84614a06af9bae68ae.zip CMake-af12f83d80412141117a0e84614a06af9bae68ae.tar.gz CMake-af12f83d80412141117a0e84614a06af9bae68ae.tar.bz2 |
Fix header includes for C++ and Visual Studio
Diffstat (limited to 'Tests/TestsWorkingDirectory')
-rw-r--r-- | Tests/TestsWorkingDirectory/main.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Tests/TestsWorkingDirectory/main.cxx b/Tests/TestsWorkingDirectory/main.cxx index 6636da0..eacd7ee 100644 --- a/Tests/TestsWorkingDirectory/main.cxx +++ b/Tests/TestsWorkingDirectory/main.cxx @@ -1,5 +1,6 @@ -#include <stdio.h> -#include <stdlib.h> +#include <cstdio> +#include <cstdlib> +#include <cstring> #if defined(_WIN32) && (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__) || defined(__MINGW32__)) |