Sign in
qemu
/
meson
/
bcbf0685492c61fbc9acac3e7b808a5036dd2439
/
.
/
test cases
/
common
/
145 recursive linking
/
circular
/
lib2.c
blob: 31cd37cc19c9b8542c222a8643771855c2ea9347 [
file
] [
log
] [
blame
]
int
get_st1_prop
(
void
);
int
get_st3_prop
(
void
);
int
get_st2_value
(
void
)
{
return
get_st1_prop
()
+
get_st3_prop
();
}