[clang] Avoid linking libdl unless needed
[llvm-project.git] / libc / utils / MPFRWrapper / check_mpfr.cpp
blob6e62824579606b5a93563c51b670d6039d112943
1 #include <mpfr.h>
3 int main() {
4 mpfr_t x;
5 mpfr_init(x);
6 mpfr_clear(x);
7 return 0;