From 7649df10ac7d1503fde181faa5d356177b40c2df Mon Sep 17 00:00:00 2001 From: ZoRo Date: Tue, 31 Jul 2018 21:02:55 +0100 Subject: Initial commit --- __cpp.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 __cpp.h (limited to '__cpp.h') diff --git a/__cpp.h b/__cpp.h new file mode 100644 index 0000000..ee23b68 --- /dev/null +++ b/__cpp.h @@ -0,0 +1,20 @@ +extern "C" void* emulate_cc_new(unsigned long len) { \ + void *p = malloc(len); + if (p == 0) { + /* Don't use stdio (e.g. fputs), because that may want to allocate more + * memory. + */ + (void)!write(2, "out of memory\n", 14); + abort(); + } + return p; +} +extern "C" void emulate_cc_delete(void* p) { + if (p != 0) + free(p); +} +void* operator new (unsigned long) __attribute__((alias("emulate_cc_new"))); +void* operator new[](unsigned long) __attribute__((alias("emulate_cc_new"))); +void operator delete (void* p) __attribute__((alias("emulate_cc_delete"))); +void operator delete[](void* p) __attribute__((alias("emulate_cc_delete"))); +void* __cxa_pure_virtual = 0; \ No newline at end of file -- cgit v1.2.3