Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr47364-2.c
blob: 1697470b965d24bff691434900f7e9d2c63d12c6 [
file
] [
log
] [
blame
]
extern
__SIZE_TYPE__ strlen
(
const
char
*);
void
foo
(
char
*,
const
char
*);
int
bar
(
const
char
*
prefix
)
{
char
buff
[
256
];
foo
(
buff
,
prefix
);
return
strlen
(
buff
);
}