repo.or.cz
/
tinycc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
x86_64: Use addend on relocs
[tinycc.git]
/
tests
/
tests2
/
31_args.c
blob
dcafed52b58a32c7a7f94e5f907a7ae6a9f74f7a
1
#include <stdio.h>
2
3
int
main
(
int
argc
,
char
**
argv
)
4
{
5
int
Count
;
6
7
printf
(
"hello world %d
\n
"
,
argc
);
8
for
(
Count
=
1
;
Count
<
argc
;
Count
++)
9
printf
(
"arg %d: %s
\n
"
,
Count
,
argv
[
Count
]);
10
11
return
0
;
12
}
13
14
/* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/