为啥我写的头文件,做的程序模块化链接不上?(程序极简单)!!
main函数# include<reg52.h>
# include"LED_test.h"
void main()
{
LED_light();
while(1);
}
头文件
#ifndef LED_test_H
#define LED_test_H
void LED_light(void);
#endif
源文件
# include<reg52.h>
# include"LED_test.h"
void LED_lignt()
{
P1 = 0x00;
}
这么简单的程序链接不上,求解!