Updated Malay translation for the bfd sub-directory
[binutils-gdb.git] / ld / testsuite / ld-i386 / pr22842a.c
blob52489bba2f95eaa237959c14fdcf5b65d1041d75
1 #include <stdio.h>
2 #include <stdlib.h>
4 void
5 test (void)
7 static int count;
8 if (count)
9 printf("PASS\n");
10 count++;
13 void
14 foo (void (*bar) (void))
16 if (bar != test)
17 abort ();
18 bar ();
19 test ();