diff options
author | Brad King <brad.king@kitware.com> | 2005-03-11 10:03:56 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-03-11 10:03:56 -0500 |
commit | 084a1c9900decdaadaa24fc1dd30875e7892e660 (patch) | |
tree | 4a303eb3c81594c86cc628fa3c888013379656ed /Source/cmStandardIncludes.h | |
parent | c8772c286e20d0767828cf9a5997cee5af27f857 (diff) | |
download | cmake-084a1c9900decdaadaa24fc1dd30875e7892e660.tar.gz |
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.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h index 38a7afac0d..5d7e6131a7 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. |