diff options
Diffstat (limited to 'dlfcn/bug-dlsym1-lib1.c')
-rw-r--r-- | dlfcn/bug-dlsym1-lib1.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/dlfcn/bug-dlsym1-lib1.c b/dlfcn/bug-dlsym1-lib1.c new file mode 100644 index 0000000000..5435b1f5ce --- /dev/null +++ b/dlfcn/bug-dlsym1-lib1.c @@ -0,0 +1,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; +} |