17 lines
301 B
C
Executable file
17 lines
301 B
C
Executable file
#include "tools.h"
|
|
|
|
#ifndef new
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void* operator new(size_t sz)
|
|
{
|
|
return malloc(sz);
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void operator delete(void* p)
|
|
{
|
|
free(p);
|
|
}
|
|
|
|
#endif
|