7 lines
85 B
C
7 lines
85 B
C
#include <stdio.h>
|
|
|
|
void print(void)
|
|
{
|
|
printf("hello from mylib.c\n");
|
|
return;
|
|
}
|