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
/
testmod.c
blob
a6dbda2c06051dbdf93a3d319d391a6ac6ffdf35
1
int
f
();
2
3
int
main
(
int
argc
,
char
**
argv
)
4
{
5
int
i
;
6
int
tile
;
7
8
tile
=
f
();
9
for
(
i
=
0
;
i
<
10
;
i
++)
10
{
11
tile
=
tile
+
1
;
12
if
(
i
%
2
==
0
)
13
tile
=
tile
+
1
;
14
if
(
i
%
2
==
1
)
15
tile
=
tile
+
1
;
16
tile
=
tile
+
1
;
17
}
18
19
return
0
;
20
}