Sign in
third-party-mirror
/
GRTEv5
/
refs/heads/master
/
.
/
google3
/
third_party
/
grte
/
v5_src
/
glibc-2.27
/
elf
/
tst-audit9.c
blob: b9de1bf5a2de62fd28fa5c7b36562490212fb32f [
file
] [
log
] [
blame
] [
edit
]
#include
<dlfcn.h>
static
int
do_test
(
void
)
{
void
*
h
=
dlopen
(
"$ORIGIN/tst-auditmod9b.so"
,
RTLD_LAZY
);
int
(*
fp
)(
void
)
=
dlsym
(
h
,
"f"
);
return
fp
()
-
1
;
}
#include
<
support
/
test
-
driver
.
c
>