so-impl-ld.c
来自「这个是LINUX下的GDB调度工具的源码」· C语言 代码 · 共 24 行
C
24 行
/* This program is linked against SOM shared libraries, which the loader automatically loads along with the program itself). */#include <stdio.h>#if defined(__cplusplus) || defined(__STDCPP__)extern "C" int solib_main (int arg);#elseint solib_main (int arg);#endifint main (){ int result; /* Call a shlib function. */ result = solib_main (100); /* Call it again. */ result = solib_main (result); return 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?