⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cxa_atexit.c

📁 KPIT GNU Tools is a set of GNU development tools for Renesas microcontrollers.
💻 C
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -