Sign in
nest-open-source
/
nest-cam
/
v366
/
glibc
/
refs/heads/main
/
.
/
elf
/
tst-piemod1.c
blob: ad439da800f5a65f3001966c5f222ca71e7a7931 [
file
] [
log
] [
blame
] [
edit
]
#include
<stdio.h>
int
foo
(
void
)
{
return
21
;
}
int
main
(
void
)
{
int
val
=
foo
();
if
(
val
!=
34
)
{
printf
(
"foo () returned %d\n"
,
val
);
return
1
;
}
return
0
;
}