]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/unload7mod1.c
iconv, localedef: avoid floating point rounding differences [BZ #24372]
[thirdparty/glibc.git] / elf / unload7mod1.c
CommitLineData
1ee2ff20
UD
1#include <dlfcn.h>
2#include <stdio.h>
3
4int
5foo (int i)
6{
7 if (dlsym (RTLD_DEFAULT, "unload7_nonexistent_symbol") == NULL)
8 return 1;
9 puts ("dlsym returned non-NULL");
10 return 0;
11}