/* Complex number type */ struct v_complex { vheader hdr; /* Header */ double real; /* Real part */ double imag; /* Imaginary part */ }; /* Type abbreviation */ typedef struct v_complex vcomplex;