4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-18 20:39:33 +08:00
newlib-cygwin/newlib/libc/stdlib/cxa_finalize.c

20 lines
312 B
C
Raw Normal View History

/*
* Implementation if __cxa_finalize.
*/
#include <stdlib.h>
#include <reent.h>
#include "atexit.h"
/*
* Call registered exit handlers. If D is null then all handlers are called,
* otherwise only the handlers from that DSO are called.
*/
void
__cxa_finalize (void * d)
{
__call_exitprocs (0, d);
}