repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr47372-1.c
blob
a2e5c5b4141ef8e2da0324270cab27dacb47c581
1
/* { dg-do compile } */
2
/* { dg-require-effective-target fpic } */
3
/* { dg-options "-O2 -fPIC -g" } */
4
5
typedef
struct FILE FILE
;
6
int
_fwalk
(
int
(*)(
FILE
*));
7
int
__sflush
(
FILE
*);
8
int
9
fflush
(
FILE
*
fp
)
10
{
11
return
(
_fwalk
(
__sflush
));
12
}