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