forked from OSchip/llvm-project
9 lines
91 B
C++
9 lines
91 B
C++
|
#include <mpfr.h>
|
||
|
|
||
|
int main() {
|
||
|
mpfr_t x;
|
||
|
mpfr_init(x);
|
||
|
mpfr_clear(x);
|
||
|
return 0;
|
||
|
}
|