packaging: changed asan macro check for "bad %if condition"
[platform/upstream/prelink.git] / testsuite / deps2lib1.c
1 #include "deps1.h"
2
3 int bar = 26;
4 int baz = 28;
5
6 struct A foo = { 1, &foo, &bar };
7
8 int f0 (void)
9 {
10   return f1 () + f2 () + f9 () + bar + baz;
11 }
12
13 int f1 (void)
14 {
15   return 1;
16 }
17
18 int f2 (void)
19 {
20   return f1 () + 1;
21 }
22
23 int f9 (void)
24 {
25   return 18;
26 }