stdlib: Add more qsort{_r} coverage
[glibc.git] / dlfcn / bug-dlopen1.c
blobdcee832f4e0be075f204b769e8c18b1c8fbc6393
1 /* Test whether the dynamic string token expansion can handle $ signs which do
2 not start one of the recognized keywords. */
4 #include <dlfcn.h>
6 int main (void)
8 dlopen ("gnu-gettext-GetURL$1", RTLD_GLOBAL | RTLD_LAZY);
9 dlopen ("gnu-gettext-GetURL${1", RTLD_GLOBAL | RTLD_LAZY);
10 return 0;