summaryrefslogtreecommitdiffstats
path: root/test cases/common/145 recursive linking/circular/lib1.c
blob: 38889cfa0169bd74622e77fdf90c83be75b27d78 (plain)
1
2
3
4
5
6
int get_st2_prop (void);
int get_st3_prop (void);

int get_st1_value (void) {
  return get_st2_prop () + get_st3_prop ();
}