我的代码中出现大量此类错误。想不通为什么。以下是错误示例:
In file included from mipstomachine.c:2:0,
from assembler.c:4:
rtype.c: In function ‘getRegister’:
rtype.c:6:1: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token
为了解释,我当前的文件布局有 mipstomachine.c,其中包括 assembler.c,其中包括 rtype.c
这是我的 rtype.c 的第 4-6 行
void rToMachine(char* line, char* mach, int currentSpot, instr currentInstruction,
rcode* rcodes)
{
对于 rtype.c 中声明的每个函数,我都会收到这样的错误
有任何想法吗?多谢你们!