summaryrefslogtreecommitdiff
path: root/src/cxa_finalize.c
blob: c870ca8e777ebc34d69c9bd2be83e3f6c8b11dcd (plain)
1
2
3
4
5
6
7
8
void __cxa_finalize(void *d );

extern void __dso_handle;

__attribute((destructor))
static void cleanup(void) {
  __cxa_finalize(&__dso_handle);
}