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
/
testarg.c
blob
97545ac3021dcc0351162739dc62e96ce64af93d
1
void
f
(
const int
*
a
,
int
*
b
);
2
3
int
main
(){
4
int
b
[
11
];
5
int
a
;
6
7
for
(
int
i
=
0
;
i
<
10
;
i
++) {
8
f
(&
a
, &
a
);
9
f
(&
b
[
i
], &
b
[
i
+
1
]);
10
}
11
12
return
a
;
13
}
14