bug-dlopen1.c 302 B

1234567891011
  1. /* Test whether the dynamic string token expansion can handle $ signs which do
  2. not start one of the recognized keywords. */
  3. #include <dlfcn.h>
  4. int main (void)
  5. {
  6. dlopen ("gnu-gettext-GetURL$1", RTLD_GLOBAL | RTLD_LAZY);
  7. dlopen ("gnu-gettext-GetURL${1", RTLD_GLOBAL | RTLD_LAZY);
  8. return 0;
  9. }