Sign in
cobalt
/
cobalt
/
286dd7840608e9cf78bc4a603ff2ec2ee39750c5
/
.
/
src
/
third_party
/
musl
/
src
/
exit
/
arm
/
__aeabi_atexit.c
blob: ce16101ddb64cad76f2c00b7ac1e0175d0d86717 [
file
] [
log
] [
blame
]
int
__cxa_atexit
(
void
(*
func
)(
void
*),
void
*
arg
,
void
*
dso
);
int
__aeabi_atexit
(
void
*
obj
,
void
(*
func
)
(
void
*),
void
*
d
)
{
return
__cxa_atexit
(
func
,
obj
,
d
);
}