Wrote in macros

This commit is contained in:
Gitea 2020-12-20 18:43:52 -06:00
parent 9ae9826930
commit ae2ee7f8e5

19
include/complex.h Normal file
View file

@ -0,0 +1,19 @@
#ifndef _COMPLEX_H
#define _COMPLEX_H
#define complex _Complex
#define _Complex_I (float _Imaginary) (1.0fi)
#ifdef __STDC_IEC_559_COMPLEX__
#define imaginary _Imaginary
#define _Imaginary_I (float _Imaginary) (1.0fi)
#endif
#ifdef _Imaginary_I
#define I _Imaginary_I
#else
#define I _Complex_I
#endif
#endif