Sign in
llvm
/
llvm-project
/
a43c192567eb4ea2535d73b83da5c7d5ed2b6122
/
.
/
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
;
}