summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/Terminal.c
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-04-23 00:32:01 (GMT)
committerBrad King <brad.king@kitware.com>2006-04-23 00:32:01 (GMT)
commitb3d2055febd2367ac593ee116302bdcef07a6458 (patch)
tree67708bdef01e83755efc0f704e15b26334ce70a6 /Source/kwsys/Terminal.c
parentf3368e7c983c7a5a3f127d7b91089ccbf3da6eb1 (diff)
downloadCMake-b3d2055febd2367ac593ee116302bdcef07a6458.zip
CMake-b3d2055febd2367ac593ee116302bdcef07a6458.tar.gz
CMake-b3d2055febd2367ac593ee116302bdcef07a6458.tar.bz2
COMP: Added missing include of string.h for strcmp.
Diffstat (limited to 'Source/kwsys/Terminal.c')
-rw-r--r--Source/kwsys/Terminal.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/kwsys/Terminal.c b/Source/kwsys/Terminal.c
index 0e9f990..0837e10 100644
--- a/Source/kwsys/Terminal.c
+++ b/Source/kwsys/Terminal.c
@@ -33,6 +33,7 @@
/* Include needed system APIs. */
#include <stdlib.h> /* getenv */
+#include <string.h> /* strcmp */
#include <stdarg.h> /* va_list */
#if defined(KWSYS_TERMINAL_SUPPORT_CONSOLE)