summaryrefslogtreecommitdiffstats
path: root/libc/bionic/eabi.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/bionic/eabi.c')
-rw-r--r--libc/bionic/eabi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/bionic/eabi.c b/libc/bionic/eabi.c
index 21d8537..2e0c99c 100644
--- a/libc/bionic/eabi.c
+++ b/libc/bionic/eabi.c
@@ -37,7 +37,8 @@ void* __dso_handle = 0;
int __attribute__((weak))
__aeabi_atexit (void *object, void (*destructor) (void *), void *dso_handle)
{
- return __cxa_atexit(destructor, object, dso_handle);
+ return 0;
+ //return __cxa_atexit(destructor, object, dso_handle);
}