summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/arm/aeabi_atexit.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/arm/aeabi_atexit.c')
-rw-r--r--newlib/libc/sys/arm/aeabi_atexit.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/newlib/libc/sys/arm/aeabi_atexit.c b/newlib/libc/sys/arm/aeabi_atexit.c
deleted file mode 100644
index 4b600e250..000000000
--- a/newlib/libc/sys/arm/aeabi_atexit.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <stdlib.h>
-
-/* Register a function to be called by exit or when a shared library
- is unloaded. This routine is like __cxa_atexit, but uses the
- calling sequence required by the ARM EABI. */
-int
-__aeabi_atexit (void *arg, void (*func) (void *), void *d)
-{
- return __cxa_atexit (func, arg, d);
-}