ubuntu-buildroot/output/build/glibc-2.36-81-g4f4d7a13edfd.../elf/tst-array4.c

19 lines
236 B
C
Raw Normal View History

2024-04-01 15:19:46 +00:00
#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;
}