我有以下 C 代码:
#ifdef _MODE_DEBUG
void program_exit(void){
#else
void program_exit(const unsigned char* fileName, unsigned int lineNumber){
printf("The program was called to terminate early from file \"%s\" line %u", fileName, lineNumber);
#endif
//We have to call cleanup() wherever possible.
arguments_cleanup(void);
exit(1);
}
哪个应该在代码的预编译版本中动态提供一个函数,具体取决于是否定义了_MODE_DEBUG。然而,GCC抱怨它在调用arguments_cleanup之前需要各种令牌。为什么GCC不认为这是一个有效的函数,或者为什么这个函数无效?
答案 0 :(得分:5)
arguments_cleanup(void);
不是调用函数的正确方法,它应该是
arguments_cleanup();
编译器尝试解释
arguments_cleanup(void);
作为声明。