Sign in
qemu
/
meson
/
ba5141a82bfb8decbb68680d24f2a8035c500a3a
/
.
/
test cases
/
common
/
145 recursive linking
/
circular
/
lib3.c
blob: 67d473aacb3d9c71bfbd637c4b0e28df100259ff [
file
] [
log
] [
blame
]
int
get_st1_prop
(
void
);
int
get_st2_prop
(
void
);
int
get_st3_value
(
void
)
{
return
get_st1_prop
()
+
get_st2_prop
();
}