mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 12:50:05 +00:00
12 lines
210 B
C
12 lines
210 B
C
/* Test module for bug-dlsym1.c test case. */
|
|
|
|
extern int dlopen_test_variable;
|
|
|
|
extern char foo (void);
|
|
|
|
/* here to get the unresolved symbol in our .so */
|
|
char foo(void)
|
|
{
|
|
return dlopen_test_variable;
|
|
}
|