Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
52712d3ff7a2f7bcf737996d6ab59ef2cc29c20d
/
.
/
libc
/
utils
/
MPFRWrapper
/
check_mpfr.cpp
blob: 6e62824579606b5a93563c51b670d6039d112943 [
file
] [
log
] [
blame
]
#include
<mpfr.h>
int
main
()
{
mpfr_t
x
;
mpfr_init
(
x
);
mpfr_clear
(
x
);
return
0
;
}