#include <stdio.h>#include "test.c" //引用test.c文件extern void printLine() //这里定义的方法对吗?{ printf("**************\n"); }int main(){ say(); return 0;}
还需要把test.c里面say改成static,就成功了