X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fcomplex.h;h=d4cc9ea990bd7ba5b34a23ddda34db0c06f1fc98;hb=9240ade77991f36f5584e90d7233182401c77614;hp=59cb5b2c45facaefb2be191f02523365b48af6e0;hpb=8175309ab960fe0c7672e002d7ce47e551d5d916;p=pdclib.old diff --git a/includes/complex.h b/includes/complex.h index 59cb5b2..d4cc9ea 100644 --- a/includes/complex.h +++ b/includes/complex.h @@ -4,8 +4,7 @@ // Public Domain C Library - http://pdclib.sourceforge.net // This code is Public Domain. Use, modify, and redistribute at will. // ---------------------------------------------------------------------------- -// Provides the types float _Complex, double _Complex and long double _Complex -// plus math functions on those types. +// Complex arithmetic // ---------------------------------------------------------------------------- #ifndef __COMPLEX_H @@ -18,11 +17,13 @@ #define complex _Complex #endif -#define _Complex_I (float _Complex){0, 1} -#define imaginary _Imaginary // optional +#define _Complex_I ( const float _Complex ) { 0, 1 } + +// TODO: imaginary is only defined if implementation supports _Imaginary. +#define imaginary _Imaginary #ifdef imaginary -#define _Imaginary_I ((float _Imaginary)1) +#define _Imaginary_I ( ( const float _Imaginary ) 1 ) #endif #ifdef imaginary