diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2010-12-17 09:14:25 -0500 |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2010-12-17 09:14:25 -0500 |
commit | af12f83d80412141117a0e84614a06af9bae68ae (patch) | |
tree | 6d51ec3a85ed4a42b68aa1a9d9f3e7021e58e3e1 /Tests/TestsWorkingDirectory | |
parent | 5597aa24f1e4c00aab39d1dd3a8d3d9ff0a8f582 (diff) | |
download | cmake-af12f83d80412141117a0e84614a06af9bae68ae.tar.gz |
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 6636da08b2..eacd7ee591 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__)) |