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
/
0049-inits.c
blob
eda8dcff5dcdfee8e126f2b8ae007a4fa84752b3
1
2
3
struct
S
{
int
a
;
int
b
;};
4
struct
S s
= { .
b
=
2
, .
a
=
1
};
5
6
int
7
main
()
8
{
9
if
(
s
.
a
!=
1
)
10
return
1
;
11
if
(
s
.
b
!=
2
)
12
return
2
;
13
return
0
;
14
}