index
:
glibc
master
vdso
Fork of glibc for development
Jason A. Donenfeld
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
elf
/
dblloadmod1.c
blob: ecec29ec636dd7292aebaad0b62e2d9921f82fd8 (
plain
) (
blame
)
1
2
3
4
5
6
7
8
extern
int
bar
(
void
);
extern
int
foo
(
void
);
int
foo
(
void
)
{
return
10
+
bar
();
}