Fix warnings about undeclared globals, they are irrelevant to the test
[smatch.git] / validation / preprocessor8.c
blob861dfe5195300319c90b1436b2e83d3a69433de0
1 #define A(x) ## x
2 #define B(x) x ##
3 #define C(x) x ## ## ##
4 #define D(x) x#y
5 #define E x#y
6 #define F(x,y) x x##y #x y
7 #define G a##b
8 #define H 1##2
9 #define I(x,y,z) x y z
10 "A(x)" : A(x)
11 "B(x)" : B(x)
12 "C(x)" : C(x)
13 "D(x)" : D(x)
14 "x#y" : E
15 "ab GH \"G\" 12" : F(G,H)
16 "a ## b" : I(a,##,b)