universally apply our cflags (no vsx, no altivec..)
[glibc.git] / dlfcn / bug-dlopen1.c
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
6 int main (void)
7 {
8 dlopen ("gnu-gettext-GetURL$1", RTLD_GLOBAL | RTLD_LAZY);
9 dlopen ("gnu-gettext-GetURL${1", RTLD_GLOBAL | RTLD_LAZY);
10 return 0;
11 }