#ifndef __COMPLEX_H #define __COMPLEX_H struct complex { double re; double im; }; #endif // __COMPLEX_H