COMP: Added missing includes. This partially addresses bug#3556.
This commit is contained in:
parent
9b2b2b5f1b
commit
658d38e0af
|
@ -24,6 +24,12 @@
|
||||||
|
|
||||||
#include "cmSourceFile.h"
|
#include "cmSourceFile.h"
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#ifdef __QNX__
|
||||||
|
# include <malloc.h> /* for malloc/free on QNX */
|
||||||
|
#endif
|
||||||
|
|
||||||
extern "C"
|
extern "C"
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,12 @@
|
||||||
|
|
||||||
#include <cmsys/DynamicLoader.hxx>
|
#include <cmsys/DynamicLoader.hxx>
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#ifdef __QNX__
|
||||||
|
# include <malloc.h> /* for malloc/free on QNX */
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
extern "C" void TrapsForSignalsCFunction(int sig);
|
extern "C" void TrapsForSignalsCFunction(int sig);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue