mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-17 13:33:31 +08:00
10 lines
181 B
C
10 lines
181 B
C
|
/* 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;
|
||
|
}
|