summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/tools.cpp
blob: 93766f14a61c35b8d51f55de733f13aaa61e287b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "tools.h"

//-----------------------------------------------------------------------------
void* operator new(size_t sz)
{
	return malloc(sz);
}

//-----------------------------------------------------------------------------
void operator delete(void* p)
{
	free(p);
}