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
/
0009-expr.c
blob
f9a3509fd3e4bc497ea5a91d8355142e93720905
1
2
int
3
main
()
4
{
5
int
x
;
6
7
x
=
1
;
8
x
=
x
*
10
;
9
x
=
x
/
2
;
10
x
=
x
%
3
;
11
return
x
-
2
;
12
}