Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
0d0cfaea
Commit
0d0cfaea
authored
Mar 11, 2005
by
Brad King
Browse files
COMP: Added missing include of string.h.
parent
084a1c99
Changes
3
Hide whitespace changes
Inline
Side-by-side
Source/kwsys/CommandLineArguments.cxx
View file @
0d0cfaea
...
...
@@ -24,6 +24,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef _MSC_VER
# pragma warning (disable: 4786)
...
...
Source/kwsys/RegularExpression.cxx
View file @
0d0cfaea
...
...
@@ -34,6 +34,7 @@
#include KWSYS_HEADER(RegularExpression.hxx)
#include <stdio.h>
#include <string.h>
namespace
KWSYS_NAMESPACE
{
...
...
Source/kwsys/SystemTools.cxx
View file @
0d0cfaea
...
...
@@ -23,16 +23,17 @@
# pragma warning (disable: 4786)
#endif
#include <stdio.h>
#include <sys/stat.h>
#include <ctype.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <time.h>
// support for realpath call
#ifndef _WIN32
#include <limits.h>
#include <stdlib.h>
#include <sys/param.h>
#include <sys/wait.h>
#include <sys/ioctl.h>
...
...
@@ -42,9 +43,6 @@
#if defined(_WIN32) && (defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__))
#include <io.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <windows.h>
#include <direct.h>
#define _unlink unlink
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment