cxa_atexit.c
来自「KPIT GNU Tools is a set of GNU developme」· C语言 代码 · 共 24 行
C
24 行
/* * Implementation of __cxa_atexit. */#include <stddef.h>#include <stdlib.h>#include <reent.h>#include <sys/lock.h>#include "atexit.h"/* * Register a function to be performed at exit or DSO unload. */int_DEFUN (__cxa_atexit, (fn, arg, d), void (*fn) (void *) _AND void *arg _AND void *d){ return __register_exitproc (__et_cxa, (void (*)(void)) fn, arg, d);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?