No what he is saying is that the function does not return a value eg
Code:
int foo()
{
  return 1;
}
void bar()
{
  cout<<"Hello";
}