mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-09-10 13:04:53 -04:00
20 lines
508 B
C++
20 lines
508 B
C++
//=======================================================================
|
|
// Copyright Baptiste Wicht 2013-2018.
|
|
// Distributed under the terms of the MIT License.
|
|
// (See accompanying file LICENSE or copy at
|
|
// http://www.opensource.org/licenses/MIT)
|
|
//=======================================================================
|
|
|
|
#ifndef NEW_H
|
|
#define NEW_H
|
|
|
|
inline void* operator new( size_t , void* place){
|
|
return place;
|
|
}
|
|
|
|
inline void* operator new[]( size_t , void* place){
|
|
return place;
|
|
}
|
|
|
|
#endif
|