?? ctdt.c
字號:
/* ctors and dtors arrays -- to be used by runtime system */
/* to call static constructors and destructors */
/* */
/* NOTE: Use a GNU C/C++ compiler to compile this file. */
__asm__ (".data");
__asm__ (".global __ctors");
__asm__ (".align 4");
__asm__ ("__ctors:");
__asm__ (" .long __GLOBAL_$I$__stdstrbufs_o");
__asm__ (" .long __GLOBAL_$I$__stlinst_o");
__asm__ (" .long __GLOBAL_$I$__streambuf_o");
__asm__ (" .long 0");
__asm__ (".global __dtors");
__asm__ (".align 4");
__asm__ ("__dtors:");
__asm__ (" .long __GLOBAL_$D$__streambuf_o");
__asm__ (" .long __GLOBAL_$D$__stlinst_o");
__asm__ (" .long __GLOBAL_$D$__stdstrbufs_o");
__asm__ (" .long 0");
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -