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