]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/nodelete2.c
iconv, localedef: avoid floating point rounding differences [BZ #24372]
[thirdparty/glibc.git] / elf / nodelete2.c
CommitLineData
aff4519d
UD
1#include <stdio.h>
2#include <stdlib.h>
3#include <dlfcn.h>
4
5int
6main (void)
7{
8 void *handle = dlopen ("nodel2mod3.so", RTLD_LAZY);
9 if (handle == NULL)
10 {
11 printf ("%s\n", dlerror ());
12 exit (1);
13 }
14 dlclose (handle);
15 exit (1);
16}