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
/
0014-assignidx.c
blob
3b118910fb3c7069a9d9477bdfef85d962c4c984
1
2
int
3
main
()
4
{
5
int
x
;
6
int
*
p
;
7
8
x
=
1
;
9
p
= &
x
;
10
p
[
0
] =
0
;
11
return
x
;
12
}