Blame dlfcn/bug-dlsym1-lib1.c

Packit 6c4009
/* Test module for bug-dlsym1.c test case.  */
Packit 6c4009
Packit 6c4009
extern int dlopen_test_variable;
Packit 6c4009
Packit 6c4009
extern char foo (void);
Packit 6c4009
Packit 6c4009
/* here to get the unresolved symbol in our .so */
Packit 6c4009
char foo(void)
Packit 6c4009
{
Packit 6c4009
    return dlopen_test_variable;
Packit 6c4009
}