#ifndef __COMPLEX_H__ #define __COMPLEX_H__ typedef struct complex { float re; float im; } complex_t; #endif