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
zh_SG locale: Use copy "zh_CN" in LC_MESSAGES instead of English
[glibc.git]
/
elf
/
tst-audit9.c
blob
b9de1bf5a2de62fd28fa5c7b36562490212fb32f
1
#include <dlfcn.h>
2
3
static int
4
do_test
(
void
)
5
{
6
void
*
h
=
dlopen
(
"$ORIGIN/tst-auditmod9b.so"
,
RTLD_LAZY
);
7
int
(*
fp
)(
void
) =
dlsym
(
h
,
"f"
);
8
return
fp
() -
1
;
9
}
10
11
#include <support/test-driver.c>