repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git]
/
sdcc
/
support
/
regression
/
qct
/
0092-arrayinit.c
blob
21f7118a98c7ac16ed07a39680cb885e94243ff9
1
2
int
a
[
3
] = {
0
,
1
,
2
};
3
4
int
5
main
()
6
{
7
if
(
a
[
0
] !=
0
)
8
return
1
;
9
if
(
a
[
1
] !=
1
)
10
return
2
;
11
if
(
a
[
2
] !=
2
)
12
return
3
;
13
14
return
0
;
15
}