1 int fref(void); fref(void)2 int fref(void) { return 0; } 3 4 static 5 int floc(void); floc(void)6 int floc(void) { return 0; } 7 8 static 9 int oloc; 10 int oloc = 0; 11 12 /* 13 * check-name: static forward declaration 14 */ 15