/* test103.c   L. Stewart February 15, 1982  5:54 PM */
/* declarations of procedure types */

main()
  {
  char b, foo();
  int baz();
  b = foo();
  b = baz();
  };