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
}
__cxa_atexit
int __cxa_atexit(void(*dtor)(void *this), void *object, void *handle)
__aeabi_atexit
int __aeabi_atexit(void *object, void(*destroyer)(void *), void *dso_handle)
Definition:
atexit.c:5
epsilon
liba
src
aeabi-rt
atexit.c
Generated by
1.8.14