void FiveFunction(void);
void TwoFunction(void);

void SixAFunction(void)
{
  FiveFunction();
  TwoFunction();
}