mirror of
https://github.com/intel/llvm.git
synced 2026-01-15 12:25:46 +08:00
9 lines
93 B
C++
9 lines
93 B
C++
|
|
#include <mpc.h>
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
mpc_t x;
|
||
|
|
mpc_init2(x, 256);
|
||
|
|
mpc_clear(x);
|
||
|
|
return 0;
|
||
|
|
}
|