diff options
Diffstat (limited to 'dlfcn/bug-dlopen1.c')
-rw-r--r-- | dlfcn/bug-dlopen1.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/dlfcn/bug-dlopen1.c b/dlfcn/bug-dlopen1.c deleted file mode 100644 index d91810a4f0..0000000000 --- a/dlfcn/bug-dlopen1.c +++ /dev/null @@ -1,12 +0,0 @@ -/* 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; -} |