blob: d1f3f525a7c4a3ce7f1626b40a9ee323c2a89bd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
extern int (*gp)(const char*);
int
g (const char* d)
{
__builtin_printf ("g");
return 0;
}
void
f (void)
{
int errcnt=0;
if (gp != g)
{
__builtin_printf ("f");
errcnt++;
}
}
|