repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Further improve string bench timing
[glibc.git]
/
support
/
links-dso-program-c.c
blob
d28a28a0d09c743c863a53ea41a9d3563320360f
1
#include <stdio.h>
2
3
int
4
main
(
int
argc
,
char
**
argv
)
5
{
6
/* Complexity to keep gcc from optimizing this away. */
7
printf
(
"This is a test %s.
\n
"
,
argc
>
1
?
argv
[
1
] :
"null"
);
8
return
0
;
9
}