Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / stdlib / cxa_finalize.c
blob467532881b04210a63c2529c0377ef05066b9b3b
1 /*
2 * Implementation if __cxa_finalize.
3 */
6 #include <stdlib.h>
7 #include <reent.h>
8 #include "atexit.h"
11 * Call registered exit handlers. If D is null then all handlers are called,
12 * otherwise only the handlers from that DSO are called.
15 void
16 __cxa_finalize (void * d)
18 __call_exitprocs (0, d);