0

我有一个非常基本的 main.c 程序,我正在尝试编译,但我无法使用简单的外部汇编函数编译它。

让我告诉你我有什么

主.c:

extern void putc(char c);

int main()
{
    return (0);
}

终端:

$ bcc -c main.c
main.c:13.21: error: need ')'
main.c:13.24: error: c not in argument list
main.c:13.24: error: need ';'
main.c:13.24: error: need '{'
main.c:13.24: error: bad expression
main.c:15.3: error: bad expression
main.c:15.8: error: need ';'
main.c:16.1: error: need ';'
main.c:17.15: error: compiler bug? - attempting to load non-scalar non-pointer
main.c:eof: error: need '}'
$

更新:
如果我将代码更改为

extern void putc(c) char c;

int main();
{
    return(0);
}

然后我得到

$ bcc -c main.c 
main.c:8.11: error: main not in argument list
main.c:10.14: error: compiler bug? - attempting to load non-scalar non-pointer
$
4

0 回答 0