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
/
0050-inits.c
blob
0206352e334ba5853fff61ec35b34876bd3ae34a
1
2
3
int
x
=
10
;
4
5
struct
S
{
int
a
;
int
*
p
;};
6
struct
S s
= { .
p
= &
x
, .
a
=
1
};
7
8
int
9
main
()
10
{
11
if
(
s
.
a
!=
1
)
12
return
1
;
13
if
(*
s
.
p
!=
10
)
14
return
2
;
15
return
0
;
16
}