1 2 3 4 5 6 7 8 9
#ifndef _TOOLS_H #define _TOOLS_H #ifndef __cplusplus void* operator new(size_t sz); void operator delete(void* p); #endif #endif