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
/
0015-localarray.c
blob
fef179403523c77f21bcc5b8b7561076dc4f2ab4
1
2
int
3
main
()
4
{
5
int
arr
[
2
];
6
7
arr
[
0
] =
1
;
8
arr
[
1
] =
2
;
9
10
return
arr
[
0
] +
arr
[
1
] -
3
;
11
}