llvm-project/libc/utils/MPFRWrapper/check_mpfr.cpp

9 lines
91 B
C++

#include <mpfr.h>
int main() {
mpfr_t x;
mpfr_init(x);
mpfr_clear(x);
return 0;
}