Sign in
qemu
/
meson
/
refs/heads/flob
/
.
/
test cases
/
common
/
153 recursive linking
/
edge-cases
/
shstmain.c
blob: b44c55f6c4a15642770d801ffe212ffdbe0841d9 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
"../lib.h"
int
get_stshdep_value
(
void
);
int
main
(
int
argc
,
char
*
argv
[])
{
int
val
;
val
=
get_stshdep_value
();
if
(
val
!=
1
)
{
printf
(
"st1 value was %i instead of 1\n"
,
val
);
return
-
1
;
}
return
0
;
}