repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git]
/
compiler
/
purify
/
test2.c
blob
606ea39a46727d7b9a1d01a92829fdc1b2775e56
1
#include <stdio.h>
2
3
int
main
(
int
argc
,
char
**
argv
)
4
{
5
char
*
str
;
6
int
t
;
7
8
str
=
"Hello world.
\n
"
;
9
10
printf
(
"%s"
,
str
);
11
12
printf
(
"argv=%p
\n
"
,
argv
);
13
14
for
(
t
=
0
;
t
<
argc
;
t
++)
15
printf
(
"Arg %d: %s
\n
"
,
t
,
argv
[
t
]);
16
17
return
0
;
18
}