bug-dlsym1-lib1.c 210 B

1234567891011
  1. /* Test module for bug-dlsym1.c test case. */
  2. extern int dlopen_test_variable;
  3. extern char foo (void);
  4. /* here to get the unresolved symbol in our .so */
  5. char foo(void)
  6. {
  7. return dlopen_test_variable;
  8. }