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
/
0046-inits.c
blob
8949f87b95209183ff82ff52c9cda42acb3f700f
1
2
int
x
=
5
;
3
long
y
=
6
;
4
int
*
p
= &
x
;
5
6
int
7
main
()
8
{
9
if
(
x
!=
5
)
10
return
1
;
11
if
(
y
!=
6
)
12
return
2
;
13
if
(*
p
!=
5
)
14
return
3
;
15
return
0
;
16
}
17