You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
236 B

#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;
}