7 lines
87 B
C
7 lines
87 B
C
#include <stdio.h>
|
|
void mylib(void);
|
|
void mylib(void)
|
|
{
|
|
printf("This is mylib\n");
|
|
}
|