Skip to content
Permalink
c3fd12a239
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
9 lines (7 sloc) 181 Bytes
/* Test module for bug-dlsym1.c test case. */
extern int dlopen_test_variable;
/* here to get the unresolved symbol in our .so */
char foo()
{
return dlopen_test_variable;
}