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