1#include <stdio.h>
2
3void common(void)
4{
5  printf("hello from common.c\n");
6  return;
7}
8