LinuxDriver/Linux系统编程篇/03库的制作与使用/动态库制作/test.c

8 lines
79 B
C

#include <stdio.h>
void mylib(void);
int main(void){
mylib();
return 0;
}