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
/
0081-bug.c
blob
ad0af767ef632a0df5b99056c7a1df5875d7d93d
1
#define x(y) ((y) + 1)
2
3
int
4
main
()
5
{
6
int
x
;
7
int
y
;
8
9
y
=
0
;
10
x
=
x
(
y
);
11
12
if
(
x
!=
1
)
13
return
1
;
14
15
return
0
;
16
}
17