2002-08-21 23:03:46 +00:00
|
|
|
/* Test module for bug-dlsym1.c test case. */
|
|
|
|
|
|
|
|
extern int dlopen_test_variable;
|
|
|
|
|
2002-08-23 08:52:49 +00:00
|
|
|
extern char foo (void);
|
|
|
|
|
2002-08-21 23:03:46 +00:00
|
|
|
/* here to get the unresolved symbol in our .so */
|
2002-08-23 08:52:49 +00:00
|
|
|
char foo(void)
|
2002-08-21 23:03:46 +00:00
|
|
|
{
|
|
|
|
return dlopen_test_variable;
|
|
|
|
}
|