#include <stdio.h>



int main(void) {

  typedef int (*foo) ();
  foo * bar ();
  foo * p = bar;
  ( void )p ;
	return 0;
}
