]> git.ipfire.org Git - thirdparty/glibc.git/blob - dlfcn/bug-dlsym1-lib1.c
malloc: set NON_MAIN_ARENA flag for reclaimed memalign chunk (BZ #30101)
[thirdparty/glibc.git] / dlfcn / bug-dlsym1-lib1.c
1 /* Test module for bug-dlsym1.c test case. */
2
3 extern int dlopen_test_variable;
4
5 extern char foo (void);
6
7 /* here to get the unresolved symbol in our .so */
8 char foo(void)
9 {
10 return dlopen_test_variable;
11 }