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
/
0019-selfrefstruct.c
blob
768c36fc3b7de8973d76a41dc2566ab1b3850cb9
1
2
int
3
main
()
4
{
5
struct
S
{
struct
S
*
p
;
int
x
; }
s
;
6
7
s
.
x
=
0
;
8
s
.
p
= &
s
;
9
return
s
.
p
->
p
->
p
->
p
->
p
->
x
;
10
}
11