cxa_finalize.c 162 B

12345678
  1. void __cxa_finalize(void *d ) { (void)d; };
  2. extern void* __dso_handle;
  3. __attribute((destructor))
  4. static void cleanup(void) {
  5. __cxa_finalize(&__dso_handle);
  6. }