]> git.ipfire.org Git - thirdparty/glibc.git/blame - dlfcn/bug-dlsym1-lib1.c
time: Allow later version licensing.
[thirdparty/glibc.git] / dlfcn / bug-dlsym1-lib1.c
CommitLineData
c3fd12a2
RM
1/* Test module for bug-dlsym1.c test case. */
2
3extern int dlopen_test_variable;
4
a7f5255a
AJ
5extern char foo (void);
6
c3fd12a2 7/* here to get the unresolved symbol in our .so */
a7f5255a 8char foo(void)
c3fd12a2
RM
9{
10 return dlopen_test_variable;
11}