diff options
author | Brad King <brad.king@kitware.com> | 2006-08-01 14:31:24 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-08-01 14:31:24 -0400 |
commit | 658d38e0af541ef9347eaba5c1aa7430573023e4 (patch) | |
tree | 21f3e1c341cabac9b6d41e4e447c1870dba02aa5 /Source/cmCPluginAPI.cxx | |
parent | 9b2b2b5f1b463cb20f576aad903341dab5bf3373 (diff) | |
download | cmake-658d38e0af541ef9347eaba5c1aa7430573023e4.tar.gz |
COMP: Added missing includes. This partially addresses bug#3556.
Diffstat (limited to 'Source/cmCPluginAPI.cxx')
-rw-r--r-- | Source/cmCPluginAPI.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx index a184eced67..a03a70a663 100644 --- a/Source/cmCPluginAPI.cxx +++ b/Source/cmCPluginAPI.cxx @@ -24,6 +24,12 @@ #include "cmSourceFile.h" +#include <stdlib.h> + +#ifdef __QNX__ +# include <malloc.h> /* for malloc/free on QNX */ +#endif + extern "C" { |