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

This commit is contained in:
Sebastien Barre 2002-07-31 09:29:58 -04:00
parent 9ca602e18e
commit 843616ec7e
1 changed files with 1 additions and 1 deletions

View File

@ -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";