This repository has been archived on 2025-03-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rc2007-soccer/source/Concept/Framework/tools.c
2007-02-18 00:14:00 +00:00

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