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