2.c

来自「俄罗斯高人Mamaich的Pocket gcc编译器(运行在PocketPC上)」· C语言 代码 · 共 20 行

C
20
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?