#ifndef __COMPLEX__ #define __COMPLEX__ typedef struct { float r,i; } complex_t ; void complex_define (complex_t *v, float r, float i) ; ... #endif