FIX: <stdlib.h> is enough to get malloc()/free()
This commit is contained in:
parent
9ca602e18e
commit
843616ec7e
|
@ -96,7 +96,7 @@ bool cmCreateTestSourceList::InitialPass(std::vector<std::string> const& argsIn)
|
|||
"#include <ctype.h>\n"
|
||||
"#include <stdio.h>\n"
|
||||
"#include <string.h>\n"
|
||||
"#include <malloc.h>\n";
|
||||
"#include <stdlib.h>\n";
|
||||
if(extraInclude.size())
|
||||
{
|
||||
fout << "#include \"" << extraInclude << "\"\n";
|
||||
|
|
Loading…
Reference in New Issue