This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
rc2007-soccer/source/Concept/Framework/tools.c

18 lines
301 B
C
Raw Normal View History

2007-02-06 14:41:04 +00:00
#include "tools.h"
#ifndef new
2007-02-06 14:41:04 +00:00
//-----------------------------------------------------------------------------
void* operator new(size_t sz)
{
return malloc(sz);
}
//-----------------------------------------------------------------------------
void operator delete(void* p)
{
free(p);
}
#endif