int func2(int a, int b)
{
 int c;
 c = a + b;
 return c;
}

void func1(void)
{
  func2(0, 1);
}
