1#include <stdlib.h>
2#include <stdio.h>
3
4extern void f1();
5
6void use_s1(void)
7{
8//      printf("calling function f1");
9	f1();
10}
11