Borland C++: Fixed compiler error (couldn't find the function 'free')
This commit is contained in:
parent
a9e1fe5637
commit
53752c129d
|
@ -1,4 +1,4 @@
|
|||
/*
|
||||
/*
|
||||
* c++check - c/c++ syntax checking
|
||||
* Copyright (C) 2007 Daniel Marjamäki
|
||||
*
|
||||
|
@ -25,6 +25,10 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#ifdef __BORLANDC__
|
||||
#include <stdlib.h> // <- free
|
||||
#endif
|
||||
|
||||
extern std::vector<std::string> Files;
|
||||
|
||||
class TOKEN
|
||||
|
|
Loading…
Reference in New Issue