blob: 6e62824579606b5a93563c51b670d6039d112943 [file] [log] [blame]
#include <mpfr.h>
int main() {
mpfr_t x;
mpfr_init(x);
mpfr_clear(x);
return 0;
}