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
/
0069-funclikemacro.c
blob
f4f787ccbdaf4b6d9624db938dd873bd6a1ceeb4
1
#define A 3
2
#define FOO(X,Y,Z) X + Y + Z
3
#define SEMI ;
4
5
int
6
main
()
7
{
8
if
(
FOO
(
1
,
2
,
A
) !=
6
)
9
return
1
SEMI
10
return
FOO
(
0
,
0
,
0
);
11
}