diff options
author | Brad King <brad.king@kitware.com> | 2006-08-01 18:31:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-08-01 18:31:24 (GMT) |
commit | 658d38e0af541ef9347eaba5c1aa7430573023e4 (patch) | |
tree | 21f3e1c341cabac9b6d41e4e447c1870dba02aa5 /Source/cmLoadCommandCommand.cxx | |
parent | 9b2b2b5f1b463cb20f576aad903341dab5bf3373 (diff) | |
download | CMake-658d38e0af541ef9347eaba5c1aa7430573023e4.zip CMake-658d38e0af541ef9347eaba5c1aa7430573023e4.tar.gz CMake-658d38e0af541ef9347eaba5c1aa7430573023e4.tar.bz2 |
COMP: Added missing includes. This partially addresses bug#3556.
Diffstat (limited to 'Source/cmLoadCommandCommand.cxx')
-rw-r--r-- | Source/cmLoadCommandCommand.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmLoadCommandCommand.cxx b/Source/cmLoadCommandCommand.cxx index e13449c..fe73ee8 100644 --- a/Source/cmLoadCommandCommand.cxx +++ b/Source/cmLoadCommandCommand.cxx @@ -21,6 +21,12 @@ #include <cmsys/DynamicLoader.hxx> +#include <stdlib.h> + +#ifdef __QNX__ +# include <malloc.h> /* for malloc/free on QNX */ +#endif + #include <signal.h> extern "C" void TrapsForSignalsCFunction(int sig); |