Initial revision
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / funcptr-1.c
blob79687c9c0052d40068dd8be40fdce2ecfda9bdbc
1 extern int (*gp)(const char*);
3 int
4 g (const char* d)
6 printf ("g");
7 return 0;
10 f ()
12 int errcnt=0;
14 if (gp != g)
16 printf ("f");
17 errcnt++;