d5a21db2621c37290246b0005c59c7ce66c6180a
[tpg/acess2.git] / Usermode / Libraries / libc++.so_src / include_exp / new
1 /*
2  * Acess2 C++ Library
3  * - By John Hodge (thePowersGang)
4  *
5  * new (header)
6  * - C++'s new operators
7  */
8 #ifndef _LIBCXX_NEW_
9 #define _LIBCXX_NEW_
10
11 #include "cstddef"
12
13 //extern void* operator new(size_t size) throw (::std::bad_alloc);
14 //extern void* operator new(size_t size, const std::nothrow_t& nothrow_value) throw();
15 extern void* operator new(size_t size, void* ptr) throw();
16
17 //extern void* operator new[](size_t size) throw (::std::bad_alloc);
18 //extern void* operator new[](size_t size, const std::nothrow_t& nothrow_value) throw();
19 extern void* operator new[](size_t size, void* ptr) throw();
20
21 #endif
22
23 // vim: ft=cpp
24

UCC git Repository :: git.ucc.asn.au