Re: [Mingw-w64-public] Issue with complex.h
On Wed, Mar 9, 2011 at 2:08 PM, Sisyphus wrote: > Hi, > > On Windows Vista 64, the demo program: > > # > C:\_64\c>type try.c > #include > #include > > int main(void) { > double _Complex rop, op, power; > > __real__ op = 3.0; > __imag__ op = 0.0; >
[Mingw-w64-public] Issue with complex.h
Hi, On Windows Vista 64, the demo program: # C:\_64\c>type try.c #include #include int main(void) { double _Complex rop, op, power; __real__ op = 3.0; __imag__ op = 0.0; __real__ power = 2.0; __imag__ power = 0.0; rop = cpow(