]> git.gir.st - tmk_keyboard.git/blob - protocol/usb_hid/arduino-1.0.1/cores/arduino/new.cpp
Add USB_Host_Shield_2.0 and arduino-1.0.1 in usb_hid.
[tmk_keyboard.git] / 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
Imprint / Impressum