1*7f37b34dSShourya Goel #include <mpc.h> 2*7f37b34dSShourya Goel 3*7f37b34dSShourya Goel int main() { 4*7f37b34dSShourya Goel mpc_t x; 5*7f37b34dSShourya Goel mpc_init2(x, 256); 6*7f37b34dSShourya Goel mpc_clear(x); 7*7f37b34dSShourya Goel return 0; 8*7f37b34dSShourya Goel } 9