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
update barvinok to version 0.41.7
[ppn.git]
/
tests
/
inputs
/
testcopy.c
blob
ecdb50a2872e71490c4e43cc407fe4897b01f535
1
int
f
(
int
,
int
);
2
3
int
main
() {
4
int
tmp
;
5
int
a
[
11
],
b
[
11
];
6
7
for
(
int
i
=
0
;
i
<=
10
;
i
++) {
8
a
[
i
] =
0
;
9
}
10
b
[
0
] =
a
[
0
];
11
for
(
int
i
=
0
;
i
<=
10
;
i
++) {
12
if
(
i
>=
1
)
13
tmp
=
a
[
i
-
1
];
14
else
15
tmp
=
a
[
i
];
16
b
[
i
] =
f
(
a
[
i
],
tmp
);
17
}
18
}