repo.or.cz
/
valgrind.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
none/tests/fdleak_cmsg_supp.supp: Add suppressions for older glibc
[valgrind.git]
/
none
/
tests
/
args.c
blob
e7307a09d9efbf342c26c967919dd59c1fee7d44
1
#include <stdio.h>
2
3
int
main
(
int
argc
,
char
*
argv
[])
4
{
5
int
i
;
6
7
for
(
i
=
0
;
i
<
argc
;
i
++) {
8
printf
(
"arg %d: `%s'
\n
"
,
i
,
argv
[
i
]);
9
}
10
return
0
;
11
}