repo.or.cz
/
ppn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
pn2adg.cc: edge_name: allocate enough space for edge name
[ppn.git]
/
tests
/
inputs
/
testindex2.c
blob
b61c298b5b2d7c972b8c38d5d6612c9343e21524
1
int
f
();
2
3
int
main
(
int
argc
,
char
**
argv
)
4
{
5
int
tile
;
6
int
a
;
7
8
for
(
int
i
=
0
;
i
<
10
;
i
++) {
9
if
(
i
%
3
==
0
)
10
tile
=
f
();
11
if
(
i
%
3
==
1
)
12
a
=
tile
+
2
;
13
else
14
a
=
tile
+
1
;
15
}
16
}