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
/
0007-forstmt.c
blob
99466efee02bbc75c0dcbb026c1db19fbc50936d
1
2
int
3
main
()
4
{
5
int
x
;
6
7
x
=
1
;
8
for
(
x
=
10
;
x
;
x
=
x
-
1
)
9
;
10
if
(
x
)
11
return
1
;
12
x
=
10
;
13
for
(;
x
;)
14
x
=
x
-
1
;
15
return
x
;
16
}