]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - tmk_core/protocol/usb_hid/arduino-1.0.1/cores/arduino/new.cpp
Merge commit 'fdc38ef3f92af7adeeb4de49550d8838c8a39b5c'
[max/tmk_keyboard.git] / tmk_core / protocol / usb_hid / arduino-1.0.1 / cores / arduino / new.cpp
1 #include <new.h>
2
3 void * operator new(size_t size)
4 {
5   return malloc(size);
6 }
7
8 void operator delete(void * ptr)
9 {
10   free(ptr);
11
12
13 int __cxa_guard_acquire(__guard *g) {return !*(char *)(g);};
14 void __cxa_guard_release (__guard *g) {*(char *)g = 1;};
15 void __cxa_guard_abort (__guard *) {}; 
16
17 void __cxa_pure_virtual(void) {};
18