aboutsummaryrefslogtreecommitdiff
path: root/CRT/ucrt.cpp
blob: 19ea5830a320d07f950f32f6cf9633a235a68a0b (plain)
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);
}