Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#include <dlfcn.h>
#include <stdio.h>
#include <stdlib.h>
extern int bar (void);
extern int foo (void);
int
foo (void)
{
void *h;
int res;
/* Load ltglobalmod1 in the global namespace. */
h = dlopen ("ltglobmod1.so", RTLD_GLOBAL | RTLD_LAZY);
if (h == NULL)
{
printf ("%s: cannot open %s: %s",
__FUNCTION__, "ltglobmod1.so", dlerror ());
exit (EXIT_FAILURE);
}
/* Call bar. This is undefined in the DSO. */
puts ("about to call `bar'");
fflush (stdout);
res = bar ();
printf ("bar returned %d\n", res);
dlclose (h);
return res != 42;
}