int Summa(int x,int y) { return x+y; }
extern int Summa(int x,int y); MyThread::Execute() { int sum=Summa(5,5); }