ctdt.c
来自「VxWorks 5.4嵌入式操作系统, Tornado II开发平台BSP包的移」· C语言 代码 · 共 23 行
C
23 行
/* ctors and dtors arrays -- to be used by runtime system */
/* to call static constructors and destructors */
/* */
/* NOTE: Use a C compiler to compile this file. If you */
/* are using GNU C++, be sure to use compile this */
/* file using GNU C and the -traditional flag. */
typedef void (*VOIDFUNCPTR) (); /* ptr to function returning void */
extern VOIDFUNCPTR _ctors[];
VOIDFUNCPTR _ctors[] =
{
0
};
extern VOIDFUNCPTR _dtors[];
VOIDFUNCPTR _dtors[] =
{
0
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?