main-lib.c revision 98d884bfd78ea7a37f46515c6e9e3635a95d8cbc
1#include<stdio.h>
2
3void
4print(char* s)
5{
6	printf("%s\n",s);
7}
8