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
/
0021-intfunc.c
blob
9633851591182ffe594538a4720c71e2d0bcf07a
1
2
int
3
foo
(
int
a
,
int
b
)
4
{
5
return
2
+
a
-
b
;
6
}
7
8
int
9
main
()
10
{
11
return
foo
(
1
,
3
);
12
}
13