Files
MarklinController/placementnew.cpp
2022-03-21 21:22:18 +01:00

12 lines
158 B
C++

#include "placementnew.h"
void* operator new(uint16_t, void* const buf)
{
return buf;
}
void* operator new[](uint16_t, void* const buf)
{
return buf;
}