summaryrefslogtreecommitdiffstats
path: root/test cases/common/145 recursive linking/circular/lib3.c
blob: 67d473aacb3d9c71bfbd637c4b0e28df100259ff (plain)
1
2
3
4
5
6
int get_st1_prop (void);
int get_st2_prop (void);

int get_st3_value (void) {
  return get_st1_prop () + get_st2_prop ();
}