repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Avoid linking libdl unless needed
[llvm-project.git]
/
libc
/
utils
/
MPFRWrapper
/
check_mpfr.cpp
blob
6e62824579606b5a93563c51b670d6039d112943
1
#include <mpfr.h>
2
3
int
main
() {
4
mpfr_t x
;
5
mpfr_init
(
x
);
6
mpfr_clear
(
x
);
7
return
0
;
8
}