packaging: changed asan macro check for "bad %if condition"
[platform/upstream/prelink.git] / testsuite / shuffle6lib1.c
1 #include "reloc1.h"
2
3 int bar = 26;
4 int baz = 28;
5 #define M(i) int b##i, *pb##i = &b##i;
6 M(0) M(1) M(2) M(3) M(4) M(5) M(6) M(7) M(8) M(9)
7 M(10) M(11) M(12) M(13) M(14) M(15) M(16) M(17) M(18) M(19)
8 #undef M
9
10 struct A foo = { 1, &foo, &bar };
11
12 int f1 (void)
13 {
14   return 1;
15 }
16
17 int f2 (void)
18 {
19   return f1 () + 1;
20 }