#ifndef _BGC_TYPES_H_ #define _BGC_TYPES_H_ // ================== Complex =================== // typedef struct { float real, imaginary; } BgcComplexFP32; typedef struct { double real, imaginary; } BgcComplexFP64; #endif