Console* initConsole(Controller* ctrl){
if (ctrl == NULL)
return NULL;
Console* c = (Console*)malloc(sizeof(Console));
c->ctrl = ctrl;
return c;
}
'{' 标记之前应为 '='、','、';'、'asm' 或 ' attribute '
这个错误出现在我的一个模块中。对于某些函数,“{”与函数的标题不在同一行,所以我按下了退格键,保存并调试。模块是干净的,但错误转到另一个模块而且我不知道出了什么问题。