11 lines
150 B
C
11 lines
150 B
C
#ifndef _TOOLS_H
|
|
#define _TOOLS_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#ifndef new
|
|
void* operator new(size_t sz);
|
|
void operator delete(void* p);
|
|
#endif
|
|
|
|
#endif
|