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
/
tcc
/
71_macro_empty_arg.c
blob
f0d3511b9d0d03ebf2c06de555df926b9a8dfb59
1
#include <stdio.h>
2
3
#define T(a,b,c) a b c
4
5
int
main
(
void
)
6
{
7
printf
(
"%d"
,
T
(
1
,+,
2
)
T
(+,,)
T
(,
2
,*)
T
(,
7
,)
T
(,,));
8
return
0
;
9
}