summaryrefslogtreecommitdiff
path: root/dlfcn/bug-dlopen1.c
blob: d91810a4f0feb1118d2b8f3ad59db5b40a51b0ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Test case by Bruno Haible.  It test whether the dynamic string
   token expansion can handle $ signs which do not start one of the
   recognized keywords.  */

#include <dlfcn.h>

int main (void)
{
  dlopen ("gnu-gettext-GetURL$1", RTLD_GLOBAL | RTLD_LAZY);
  dlopen ("gnu-gettext-GetURL${1", RTLD_GLOBAL | RTLD_LAZY);
  return 0;
}