Sign in
android
/
platform
/
external
/
libcxxrt
/
8488ee4998dd162096421145251cd121023784cb
/
.
/
src
/
cxa_finalize.c
blob: c870ca8e777ebc34d69c9bd2be83e3f6c8b11dcd [
file
] [
log
] [
blame
]
void
__cxa_finalize
(
void
*
d
);
extern
void
__dso_handle
;
__attribute
((
destructor
))
static
void
cleanup
(
void
)
{
__cxa_finalize
(&
__dso_handle
);
}