file2.h void test(void);
file2.c void test(void) { }
这样进行编译,运行之后在main中调用test()时,总是进入startup.asm文件,而没有进到file2.c中的test()函数,这是怎么回事??!!是不是配置有问题?请高手执教!