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
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
qct
/
0020-ptrptr.c
blob
4209c90276a6168fa81a8bbb548eb4e1926fd961
1
2
int
3
main
()
4
{
5
int
x
, *
p
, **
pp
;
6
7
x
=
0
;
8
p
= &
x
;
9
pp
= &
p
;
10
return
**
pp
;
11
}