Sign in
qemu
/
meson
/
ef83d943d96c5d73c09bd6e2abbfdbb15ae73029
/
.
/
test cases
/
common
/
145 recursive linking
/
edge-cases
/
stomain.c
blob: a16a89b31a423d8254bae3f0fa0a1869e3842482 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
"../lib.h"
int
get_stodep_value
(
void
);
int
main
(
void
)
{
int
val
;
val
=
get_stodep_value
();
if
(
val
!=
1
)
{
printf
(
"st1 value was %i instead of 1\n"
,
val
);
return
-
1
;
}
return
0
;
}