Sign in
nest-open-source
/
nest-cam
/
v366
/
glibc
/
refs/heads/main
/
.
/
elf
/
tst-array4.c
blob: ac3d4eb716ed487c5d37dfd0f98923f65e82c311 [
file
] [
log
] [
blame
] [
edit
]
#include
<dlfcn.h>
#define
main array1_main
#include
"tst-array1.c"
#undef
main
int
main
(
void
)
{
void
*
handle
=
dlopen
(
"tst-array2dep.so"
,
RTLD_LAZY
);
array1_main
();
if
(
handle
!=
NULL
)
dlclose
(
handle
);
return
0
;
}