我正在开发一些东西Minix 3
,当涉及到处理 io 文件时,我遇到了问题。在代码中:
#include <stdio.h> /* If I don't call any stdio funcs compiler doesnt's complain*/
int main() {
FILE * fp; /* I get the following: " * not expected " */
return 0;
}
已经尝试了我想到的所有东西,无法弄清楚..
/编辑/据我所知,当我包含一些东西时,如果我调用与结构无关的函数,那没关系。是结构吗?