Mercurial > ~dholland > hg > tradcpp > index.cgi
annotate tests/t39.c @ 209:256f51fde64c default tip
Use the correct feature test macro for stdbool.h; noticed by mrg.
author | David A. Holland |
---|---|
date | Sat, 22 May 2021 00:04:05 -0400 |
parents | ffdb0b73856f |
children |
rev | line source |
---|---|
162
82cc6fa54b01
newline during a macro invocation counts as space. Behavior differs from
Joerg Sonnenberger <joerg@bec.de>
parents:
diff
changeset
|
1 #define m(a,b) a::b |
82cc6fa54b01
newline during a macro invocation counts as space. Behavior differs from
Joerg Sonnenberger <joerg@bec.de>
parents:
diff
changeset
|
2 =m(123, |
82cc6fa54b01
newline during a macro invocation counts as space. Behavior differs from
Joerg Sonnenberger <joerg@bec.de>
parents:
diff
changeset
|
3 456) |
175 | 4 ------ |
5 =m | |
6 (123, 456) | |
7 ------ | |
8 =m( | |
9 123, 456) | |
10 ------ | |
11 =m( | |
12 123, | |
13 456 | |
14 ) | |
15 ------ | |
16 =m(123, | |
17 | |
18 456) | |
19 ------ | |
20 =m(123, | |
21 456) |