1 2#include "module.h" 3 4#include "shared2.h" 5#include "stdio.h" 6 7void module() 8{ 9 printf("module\n"); 10 shared2(); 11} 12 13