/* Copyright (C) 2000 Free Software Foundation */ /* make sure we don't get confused by various flavors of void */ /* Origin: Jakub Jelinek * Joel Sherrill */ typedef void foo; foo bar(void); void baz(void) { bar(); } void volatile f(); int x() { f(); }