📄 2.c
字号:
/* Normally we should loose foo and keep _start and _init. With -u foo, we should keep that as well. */void _start() __asm__("_start");void _start(){}void __attribute__((section(".init")))_init(){}int foo() __asm__("foo");int foo(){ static int x = 1; return x++;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -