Move USB Host Shield and Arduino core to lib/ (#13973)
This commit is contained in:
parent
cf5e40c251
commit
b16091659c
182 changed files with 6 additions and 6 deletions
18
lib/usbhost/arduino-1.0.1/cores/arduino/new.cpp
Normal file
18
lib/usbhost/arduino-1.0.1/cores/arduino/new.cpp
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#include <new.h>
|
||||
|
||||
void * operator new(size_t size)
|
||||
{
|
||||
return malloc(size);
|
||||
}
|
||||
|
||||
void operator delete(void * ptr)
|
||||
{
|
||||
free(ptr);
|
||||
}
|
||||
|
||||
int __cxa_guard_acquire(__guard *g) {return !*(char *)(g);};
|
||||
void __cxa_guard_release (__guard *g) {*(char *)g = 1;};
|
||||
void __cxa_guard_abort (__guard *) {};
|
||||
|
||||
void __cxa_pure_virtual(void) {};
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue