pxdb.c

来自「lwip在ucos上的移植」· C语言 代码 · 共 38 行

C
38
字号
#include <stdio.h>#ifdef PROTOTYPESint callee (int x)#elseint callee( x )int x;#endif{    int y = x * x;    return (y - 2);}int main(){    int i;    for (i = 1; i < 10; i++)        {            printf( "%d ", callee( i ));                    }    printf( " Goodbye!\n" );    return 0;}/* This routine exists only for aCC.  The way we compile this test is   that we use aCC for the actual compile into the object file but then   use ld directly for the link.  When we do this, we get an undefined   symbol _main().  Therefore, for aCC, we have this routine in here and   ld is happy.  */#ifdef __cplusplusextern "C" {void _main(){}}#endif

⌨️ 快捷键说明

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