1 2 3 4 5 6 7 8 9 10
#include <cstdlib> void * operator new[](size_t size, const char *, int, unsigned, const char *, int) { return malloc(size); } void * operator new[](size_t size, size_t, size_t, const char *, int, unsigned, const char *, int) { return malloc(size); }