math: improve how get_absolute_min/max() work
[smatch.git] / validation / preprocessor / preprocessor12.c
blobe23e53b2b155f968d5a0a328d150da56b6a42212
1 /*
2 * GNU kludge
3 */
4 #define A(x,...) x,##__VA_ARGS__
5 A(1)
6 A(1,2)
7 A(1,2,3)
8 /*
9 * check-name: Preprocessor #12
10 * check-command: sparse -E $file
12 * check-output-start
15 1,2
16 1,2,3
17 * check-output-end