ubuntu-buildroot/output/build/glibc-2.36-81-g4f4d7a13edfd.../dlfcn/bug-dlopen1.c

12 lines
302 B
C
Raw Normal View History

2024-04-01 15:19:46 +00:00
/* 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;
}