mirror of
https://github.com/corda/corda.git
synced 2025-01-25 05:46:46 +00:00
9 lines
162 B
C
9 lines
162 B
C
|
void __cxa_finalize(void *d ) { (void)d; };
|
||
|
|
||
|
extern void* __dso_handle;
|
||
|
|
||
|
__attribute((destructor))
|
||
|
static void cleanup(void) {
|
||
|
__cxa_finalize(&__dso_handle);
|
||
|
}
|