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

source code of glibc/dlfcn/bug-dlopen1.c