// 望洋せんせいは

int foo1() {
}
int foo2( void ) {
}
int var() {
  foo1( 0 ); // 問題なし
  foo2(); // コンパイルエラー
}

// ってゆってたよ。