implict declaration of function'Key_Inter_Respond'is invalidin in c99
时间: 2023-12-06 20:44:43 浏览: 67
implicit declaration of function(解决方案).md
在 C99 标准中,如果函数的参数列表为空,则应该使用 `void` 关键字来明确表示函数的参数列表为空,而不是省略参数列表。所以,如果你在 C99 中省略了参数列表,并且编译器提示了 "implict declaration of function 'Key_Inter_Respond' is invalid" 错误,那么可以将函数的定义修改为:
```
void Key_Inter_Respond(void) {
// 函数体
}
```
这样就能够避免这个错误了。另外,如果你的代码中有多个函数出现了这个问题,也需要对每个函数进行修改。
阅读全文