10 lines
164 B
Plaintext
10 lines
164 B
Plaintext
|
#ifndef __CXX_NEW
|
||
|
#define __CXX_NEW
|
||
|
|
||
|
#include <cstddef>
|
||
|
|
||
|
inline void* operator new (std::size_t size, void* ptr) noexcept
|
||
|
{ return ptr; }
|
||
|
|
||
|
#endif /* __CXX_NEW */
|