aeabi_atexit.c
来自「KPIT GNU Tools is a set of GNU developme」· C语言 代码 · 共 11 行
C
11 行
#include <stdlib.h>/* Register a function to be called by exit or when a shared library is unloaded. This routine is like __cxa_atexit, but uses the calling sequence required by the ARM EABI. */int__aeabi_atexit (void *arg, void (*func) (void *), void *d){ return __cxa_atexit (func, arg, d);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?