2009-04-10 19:54:03 +02:00
|
|
|
/* -*- c++ -*- */
|
2009-03-04 04:28:35 +01:00
|
|
|
#ifndef __NEW__
|
|
|
|
#define __NEW__
|
|
|
|
|
2009-04-10 19:54:03 +02:00
|
|
|
#include <cstddef>
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2010-06-26 01:53:37 +02:00
|
|
|
extern "C++" {
|
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
namespace std {
|
|
|
|
struct nothrow_t {};
|
|
|
|
extern const nothrow_t nothrow;
|
|
|
|
}
|
|
|
|
|
|
|
|
void* operator new(std::size_t);
|
|
|
|
void* operator new[](std::size_t);
|
2014-08-25 21:08:19 +02:00
|
|
|
void operator delete(void*) throw();
|
|
|
|
void operator delete[](void*) throw();
|
2009-03-04 04:28:35 +01:00
|
|
|
void* operator new(std::size_t, const std::nothrow_t&);
|
|
|
|
void* operator new[](std::size_t, const std::nothrow_t&);
|
2014-08-25 21:08:19 +02:00
|
|
|
void operator delete(void*, const std::nothrow_t&) throw();
|
|
|
|
void operator delete[](void*, const std::nothrow_t&) throw();
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
inline void* operator new(std::size_t, void* p) { return p; }
|
|
|
|
inline void* operator new[](std::size_t, void* p) { return p; }
|
|
|
|
|
|
|
|
// these next two are not really required, since exceptions are off
|
2014-08-25 21:08:19 +02:00
|
|
|
inline void operator delete(void*, void*) throw() { }
|
|
|
|
inline void operator delete[](void*, void*) throw() { }
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2010-06-26 01:53:37 +02:00
|
|
|
} // extern C++
|
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif // __NEW__
|