Sign in
third-party-mirror
/
GRTEv5
/
refs/heads/master
/
.
/
google3
/
third_party
/
grte
/
v5_src
/
glibc-2.27
/
elf
/
tst-piemod1.c
blob: 72d7e0a187cfac9a6d085ccbd3812c57ab1c43c2 [
file
] [
log
] [
blame
] [
edit
]
#include
<stdio.h>
int
foo
(
void
)
{
return
21
;
}
static
int
do_test
(
void
)
{
int
val
=
foo
();
if
(
val
!=
34
)
{
printf
(
"foo () returned %d\n"
,
val
);
return
1
;
}
return
0
;
}
#include
<
support
/
test
-
driver
.
c
>