Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
991127-1.c
blob: 86098d883a51c6c7d5e99475d97b661a63732b0f [
file
] [
log
] [
blame
]
extern
void
foo
(
int
*);
static
void
bar
(
char
*
buf
)
{
int
a
;
foo
(&
a
);
while
(
a
>
0
)
{
*
buf
++
=
'0'
;
a
--;
}
}