repo.or.cz
/
tinycc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tccgen.c: Fix memory leak involving asm_label.
[tinycc.git]
/
tests
/
tests2
/
12_hashdefine.c
blob
5c521e02bcfc7d3b2585c1b7e1201e4bca91195c
1
#include <stdio.h>
2
3
#define FRED 12
4
#define BLOGGS(x) (12*(x))
5
6
int
main
()
7
{
8
printf
(
"%d
\n
"
,
FRED
);
9
printf
(
"%d, %d, %d
\n
"
,
BLOGGS
(
1
),
BLOGGS
(
2
),
BLOGGS
(
3
));
10
11
return
0
;
12
}
13
14
// vim: set expandtab ts=4 sw=3 sts=3 tw=80 :