#ifndef ALG_PLATFORM_X86_COMPLEX_H__ #define ALG_PLATFORM_X86_COMPLEX_H__ typedef struct { float re; float im; }complex_float, complex_double; complex_double cmlt(complex_double a, complex_double b); complex_double cadd(complex_double a, complex_double b); #endif