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
/
0004-pointer.c
blob
d5d471ab2309b9da1f44e2d4bd253f0154a3e6d8
1
2
3
int
4
main
()
5
{
6
int
x
;
7
int
*
p
;
8
9
x
=
4
;
10
p
= &
x
;
11
*
p
=
0
;
12
13
return
*
p
;
14
}