Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr42667.c
blob: eac80014bebc8ef7587cafcd645ccff41a6b78b9 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-w" } */
extern
int
strlen
(
const
char
*);
void
WriteTextDots
(
int
len
);
void
OnDisplay
(
char
*
string
)
{
if
(!
string
)
string
=
"(none)"
;
WriteTextDots
(
strlen
(
string
));
}