blob: c870ca8e777ebc34d69c9bd2be83e3f6c8b11dcd [file] [log] [blame]
void __cxa_finalize(void *d );
extern void __dso_handle;
__attribute((destructor))
static void cleanup(void) {
__cxa_finalize(&__dso_handle);
}