xref
: /
glibc-2.36
/
elf
/
unload4mod2.c
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
include
<
stdio.h
>
2
3
int
baz(int x)
4
baz
(
int
x
)
5
{
6
puts
(
"in baz"
);
7
return
x
*
4
;
8
}
9