17 lines
No EOL
307 B
C++
17 lines
No EOL
307 B
C++
#include "tools.h"
|
|
|
|
#ifndef __cplusplus
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void* operator new(size_t sz)
|
|
{
|
|
return malloc(sz);
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void operator delete(void* p)
|
|
{
|
|
free(p);
|
|
}
|
|
|
|
#endif |