xref: /llvm-project/libc/utils/MPCWrapper/check_mpc.cpp (revision 7f37b34d31914120a5bb6bd341e7616773df7613)
1 #include <mpc.h>
2 
3 int main() {
4   mpc_t x;
5   mpc_init2(x, 256);
6   mpc_clear(x);
7   return 0;
8 }
9