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
/
0054-struct.c
blob
df418ebf50682a7be6d66fd325e57ffcd7b687e4
1
2
int
3
main
()
4
{
5
struct
T
{
int
x
; }
s1
;
6
s1
.
x
=
1
;
7
{
8
struct
T
{
int
y
; }
s2
;
9
s2
.
y
=
1
;
10
if
(
s1
.
x
-
s2
.
y
!=
0
)
11
return
1
;
12
}
13
return
0
;
14
}