cxa_finalize.c

来自「KPIT GNU Tools is a set of GNU developme」· C语言 代码 · 共 21 行

C
21
字号
/* * 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);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?