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
/
nodlopen.c
1
#include <dlfcn.h>
2
#include <stdio.h>
3
4
int
5
main (void)
6
{
7
if (dlopen ("nodlopenmod.so", RTLD_LAZY) != NULL)
8
{
9
puts ("opening \"nodlopenmod.so\" succeeded, FAIL");
10
return 1;
11
}
12
13
puts ("opening \"nodlopenmod.so\" failed, OK");
14
return 0;
15
}