mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-22 15:20:39 +01:00
12 lines
211 B
C++
12 lines
211 B
C++
#include <stdlib.h>
|
|
|
|
// See the C++ standard, section 3.7.4 for those definitions
|
|
|
|
void * operator new (unsigned int size) {
|
|
return malloc(size);
|
|
}
|
|
|
|
void operator delete (void * ptr) noexcept {
|
|
free(ptr);
|
|
}
|