Skip to content
Snippets Groups Projects
Commit 843616ec authored by Sebastien Barre's avatar Sebastien Barre
Browse files

FIX: <stdlib.h> is enough to get malloc()/free()

parent 9ca602e1
No related branches found
No related tags found
No related merge requests found
......@@ -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";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment