KEIL编译器
例如:init.h
#ifndef __init.h
#define __init.h
..........
#endif
init.c
#include "x.h"
#include "y.h"
#include "init.h"
.........
#include "init.h"
main()
{
}
既然我在init.c中包含了x.h 和 y.h
但我在运用中还要我加这些头文件呢?
我看到有些别人的程序就不需要.
为什么?
难道在KEIL中有什么设置呢?(包含路径以设) |