Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
db4f43f0150836941f56a4d2e2923f7182328607
/
.
/
ap
/
libc
/
glibc
/
glibc-2.22
/
elf
/
tst-piemod1.c
blob: 6e98b5f0c27642d61e5f180f05c3f20f01959ff9 [
file
] [
log
] [
blame
]
#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
;
}
#define
TEST_FUNCTION do_test
()
#include
"../test-skeleton.c"