blob: 5435b1f5cedfed090cb016301ee78176e142a561 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/* 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;
}
|