solib2.c

来自「这个是LINUX下的GDB调度工具的源码」· C语言 代码 · 共 20 行

C
20
字号
/* This program is intended to be built as an HP-UX SOM shared   library, for use by the solib.exp testcase.  It simply returns   the cube of its integer argument.   */#ifdef __cplusplusextern "C" {#endif#ifdef PROTOTYPESint  solib_main (int  arg)#elseint  solib_main (arg)  int  arg;#endif{  return arg*arg*arg;}#ifdef __cplusplus}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?