check_mpfr.cpp 91 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 #include <mpfr.h> int main() { mpfr_t x; mpfr_init(x); mpfr_clear(x); return 0; }