Sign in
llvm
/
llvm-project
/
2c01f3cb3caf2dfcdcd65ced4ec124a672465cb5
/
.
/
libc
/
utils
/
MPFRWrapper
/
check_mpfr.cpp
blob: 6e62824579606b5a93563c51b670d6039d112943 [
file
]
#include
<mpfr.h>
int
main
()
{
mpfr_t
x
;
mpfr_init
(
x
);
mpfr_clear
(
x
);
return
0
;
}