repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Updated Malay translation for the bfd sub-directory
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-i386
/
pr22842a.c
blob
52489bba2f95eaa237959c14fdcf5b65d1041d75
1
#include <stdio.h>
2
#include <stdlib.h>
3
4
void
5
test
(
void
)
6
{
7
static int
count
;
8
if
(
count
)
9
printf
(
"PASS
\n
"
);
10
count
++;
11
}
12
13
void
14
foo
(
void
(*
bar
) (
void
))
15
{
16
if
(
bar
!=
test
)
17
abort
();
18
bar
();
19
test
();
20
}