aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/145 recursive linking/circular/lib2.c
blob: 31cd37cc19c9b8542c222a8643771855c2ea9347 (plain)
1
2
3
4
5
6
int get_st1_prop (void);
int get_st3_prop (void);

int get_st2_value (void) {
  return get_st1_prop () + get_st3_prop ();
}