1extern int bar(void);
2typedef int (*func_p) (void);
3
4func_p
5get_bar (void)
6{
7  return bar;
8}
9