blob: de7929a8e754aed6d81ae9ac6e8441132faa592c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <complex.h>
#ifdef __STDC_IEC_559_COMPLEX__
#define I _Imaginary_I
#else
#define I _Complex_I
#endif
/* see appendix G for whether or not to set __STDC_IEC_559_COMPLEX__ == 1 */
/*
STDC(199901)
*/
|