Mercurial > hg > CbC > old > device
diff test/macro.c @ 614:e4e007f4026d
fix #deifne /* line
author | kono |
---|---|
date | Tue, 30 May 2006 21:36:03 +0900 |
parents | 0497fa2e2414 |
children | 4e08fbf6754b |
line wrap: on
line diff
--- a/test/macro.c Wed Apr 19 14:32:36 2006 +0900 +++ b/test/macro.c Tue May 30 21:36:03 2006 +0900 @@ -33,6 +33,10 @@ #define name_hoge(c) (c+a) +#define hoge000(a) (a+a) /* hoge + comment +*/ + int main() { @@ -71,6 +75,7 @@ #endif printf("#0071:%d\n",name(3,hoge)); printf("#0072:%d\n",names(3,hoge)); + printf("#0073:%d\n",hoge000(3)); return 0; }