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

7 lines
87 B
C

#include <stdio.h>
void mylib(void);
void mylib(void)
{
printf("This is mylib\n");
}