repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update from translation team.
[glibc.git]
/
elf
/
unload4mod1.c
blob
38c5b0168dd58087e4ae2fbe950998af0ec2c24c
1
#include <stdio.h>
2
3
extern
int
bar
(
int
);
4
5
int
6
foo
(
int
x
)
7
{
8
puts
(
"in foo"
);
9
return
bar
(
x
/
2
) +
2
;
10
}