repo.or.cz
/
pet.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
scop.c: fix typos in comments
[pet.git]
/
tests
/
static.c
blob
4ded833caba4794306c6ae4513adb801cf106934
1
void
foo
(
int
n
,
int
A
[
static
n
][
n
])
2
{
3
#pragma scop
4
for
(
int
i
=
0
;
i
<
n
; ++
i
)
5
for
(
int
j
=
0
;
j
<
n
; ++
j
)
6
A
[
i
][
j
] =
0
;
7
#pragma endscop
8
}