Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6536 serge 1
/*
2
 * Implementation if __cxa_finalize.
3
 */
4
 
5
 
6
#include 
7
#include 
8
#include "atexit.h"
9
 
10
/*
11
 * Call registered exit handlers.  If D is null then all handlers are called,
12
 * otherwise only the handlers from that DSO are called.
13
 */
14
 
15
void
16
_DEFUN (__cxa_finalize, (d),
17
	void * d)
18
{
19
  __call_exitprocs (0, d);
20
}