bolt/deps/llvm-18.1.8/libc/utils/MPFRWrapper/check_mpfr.cpp

9 lines
91 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
#include <mpfr.h>
int main() {
mpfr_t x;
mpfr_init(x);
mpfr_clear(x);
return 0;
}