我环顾四周并尝试了一些东西,目前没有任何效果。
main.c:13: error: two or more data types in declaration specifiers
make[1]: *** [main.o] Error 1
make: *** [build] Error 2
我的代码差不多就是这个(我已经把所有的东西都注释掉了,所以它不是别的东西+除此之外没有其他文件);
主文件
struct savetype{
bool file_exists;
}
主程序
#include "main.h"
extern struct savetype save;
int main (void){
return 0;
}
东西.c
#include "main.h"
struct savetype save;
save.file_exists=true;