7 lines
106 B
C
7 lines
106 B
C
#ifndef _TOOLS_H
|
|
#define _TOOLS_H
|
|
|
|
void* operator new(size_t sz);
|
|
void operator delete(void* p);
|
|
|
|
#endif
|