摘要: lib1.c #include <stdio.h>int fun(){ printf("lib1\n"); return 0;} lib2.c #include <stdio.h> int fun1(){ return 0;} int fun(){ printf("lib2\n"); return 阅读全文
posted @ 2016-02-29 11:20 __sipl 阅读(1029) 评论(0) 推荐(1) 编辑