1 extern int doo();
2 
goo()3 inline int *goo() {
4 	static int xyz;
5 	return &xyz;
6 }
7 
8 int *boo();
9