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
Small ChangeLog tweak.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr42667.c
blob
eac80014bebc8ef7587cafcd645ccff41a6b78b9
1
/* { dg-do compile } */
2
/* { dg-options "-w" } */
3
4
extern
int
strlen
(
const char
*);
5
void
WriteTextDots
(
int
len
);
6
7
void
OnDisplay
(
char
*
string
)
8
{
9
if
(!
string
)
10
string
=
"(none)"
;
11
WriteTextDots
(
strlen
(
string
));
12
}
13