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
/
0043-union.c
blob
c43cff270b44713b47077d7b94755a7419d739c5
1
2
3
4
int
5
main
()
6
{
7
union
{
int
a
;
int
b
; }
u
;
8
u
.
a
=
1
;
9
u
.
b
=
3
;
10
11
if
(
u
.
a
!=
3
||
u
.
b
!=
3
)
12
return
1
;
13
return
0
;
14
}