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
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
qct
/
0006-whilestmt.c
blob
bc2068ed0ce603c8d90a3358334ef025020e5796
1
2
int
3
main
()
4
{
5
int
x
;
6
7
x
=
50
;
8
while
(
x
)
9
x
=
x
-
1
;
10
return
x
;
11
}