blob: 4eca2519fb90a1df454271ce092dd950d7f11f22 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/* Test module for bug-dlsym1.c test case. */
2
3extern int dlopen_test_variable;
4
5extern char foo (void);
6
7/* here to get the unresolved symbol in our .so */
8char foo(void)
9{
10 return dlopen_test_variable;
11}