Numworks Epsilon  1.4.1
Graphing Calculator Operating System
atexit.c
Go to the documentation of this file.
1 /* See the "Run-time ABI for the ARM Architecture", Section 4.4.5 */
2 
3 int __cxa_atexit(void (* dtor)(void * this), void * object, void * handle);
4 
5 int __aeabi_atexit(void * object, void (*destroyer)(void *), void * dso_handle) {
6  return __cxa_atexit(destroyer, object, dso_handle);
7 }
int __cxa_atexit(void(*dtor)(void *this), void *object, void *handle)
int __aeabi_atexit(void *object, void(*destroyer)(void *), void *dso_handle)
Definition: atexit.c:5