Skip to main content
Product
Technology
Discover
Solutions
Docs
Downloads
Pricing
Search
/
Sign in
Sign up
brintos
/
llvm-project-archived
public
Read only
Watch
0
Star
0
Fork
0
Files
Commits
Issues
2
Discussions
0
Wiki
0
Insights
llvm-project-archived
/
libc
/
utils
/
MPFRWrapper
/
check_mpfr.cpp
Text
·
91 B
·
6e62824
Raw
9 lines · cpp
1
#include <mpfr.h>
2
3
int main() {
4
mpfr_t x;
5
mpfr_init(x);
6
mpfr_clear(x);
7
return 0;
8
}
9