URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [stdlib/] [cxa_finalize.c] - Rev 295
Go to most recent revision | Compare with Previous | Blame | View Log
/* * 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 _DEFUN (__cxa_finalize, (d), void * d) { __call_exitprocs (0, d); }
Go to most recent revision | Compare with Previous | Blame | View Log