summaryrefslogtreecommitdiff
path: root/lib/usbhost/arduino-1.0.1/cores/arduino/new.h
diff options
context:
space:
mode:
authorvin <git@vineetk.net>2024-01-15 18:52:15 -0500
committervin <git@vineetk.net>2024-01-15 18:52:15 -0500
commit39b43b676e9aa8f549fea6fca7a6b7fd7891de69 (patch)
tree2559e89a4398c5bbe278c01f7549a9cfde3b6d7f /lib/usbhost/arduino-1.0.1/cores/arduino/new.h
parent8c8e1ad4d3f6a197cc7a0550940e0c71d84c050e (diff)
remove more unused libraries
Diffstat (limited to 'lib/usbhost/arduino-1.0.1/cores/arduino/new.h')
-rw-r--r--lib/usbhost/arduino-1.0.1/cores/arduino/new.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/usbhost/arduino-1.0.1/cores/arduino/new.h b/lib/usbhost/arduino-1.0.1/cores/arduino/new.h
deleted file mode 100644
index cd940ce8b2..0000000000
--- a/lib/usbhost/arduino-1.0.1/cores/arduino/new.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/* Header to define new/delete operators as they aren't provided by avr-gcc by default
- Taken from http://www.avrfreaks.net/index.php?name=PNphpBB2&file=viewtopic&t=59453
- */
-
-#ifndef NEW_H
-#define NEW_H
-
-#include <stdlib.h>
-
-void * operator new(size_t size);
-void operator delete(void * ptr);
-
-__extension__ typedef int __guard __attribute__((mode (__DI__)));
-
-extern "C" int __cxa_guard_acquire(__guard *);
-extern "C" void __cxa_guard_release (__guard *);
-extern "C" void __cxa_guard_abort (__guard *);
-
-extern "C" void __cxa_pure_virtual(void);
-
-#endif
-