projects
/
platform
/
upstream
/
glibc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
rtld: properly handle root directory in load path (bug 30435)
[platform/upstream/glibc.git]
/
elf
/
unload4mod1.c
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
}