aboutsummaryrefslogtreecommitdiff
path: root/CRT/ucrt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CRT/ucrt.cpp')
-rw-r--r--CRT/ucrt.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/CRT/ucrt.cpp b/CRT/ucrt.cpp
new file mode 100644
index 0000000..19ea583
--- /dev/null
+++ b/CRT/ucrt.cpp
@@ -0,0 +1,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);
+}