Sign in
nest-open-source
/
nest-cam
/
v366
/
glibc
/
refs/heads/main
/
.
/
elf
/
tst-deep1mod3.c
blob: eee7d5c97b627efbf2ac20816955d421adb6dd9a [
file
] [
log
] [
blame
] [
edit
]
#include
<stdio.h>
extern
int
back
(
void
);
int
baz
(
void
)
{
printf
(
"%s:%s\n"
,
__FILE__
,
__func__
);
return
back
();
}
int
xyzzy
(
void
)
{
printf
(
"%s:%s\n"
,
__FILE__
,
__func__
);
return
0
;
}