summaryrefslogtreecommitdiffstats
path: root/Source/cmStandardIncludes.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-03-11 15:03:56 (GMT)
committerBrad King <brad.king@kitware.com>2005-03-11 15:03:56 (GMT)
commit084a1c9900decdaadaa24fc1dd30875e7892e660 (patch)
tree4a303eb3c81594c86cc628fa3c888013379656ed /Source/cmStandardIncludes.h
parentc8772c286e20d0767828cf9a5997cee5af27f857 (diff)
downloadCMake-084a1c9900decdaadaa24fc1dd30875e7892e660.zip
CMake-084a1c9900decdaadaa24fc1dd30875e7892e660.tar.gz
CMake-084a1c9900decdaadaa24fc1dd30875e7892e660.tar.bz2
COMP: Adding stdlib.h to standard includes. We are using functions from it all over the place assuming it has been included here.
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r--Source/cmStandardIncludes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h
index 38a7afa..5d7e613 100644
--- a/Source/cmStandardIncludes.h
+++ b/Source/cmStandardIncludes.h
@@ -76,6 +76,7 @@
// include the "c" string header
#include <string.h>
#include <stdio.h>
+#include <stdlib.h>
#if !defined(_WIN32) && defined(__COMO__)
// Hack for como strict mode to avoid defining _SVID_SOURCE or _BSD_SOURCE.