Message-ID: From: "Andris Pavenis" To: Paul Richards , djgpp AT delorie DOT com Date: Fri, 15 Jan 1999 12:38:56 +0200 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: Complex Numbers not working In-reply-to: X-mailer: Pegasus Mail for Win32 (v3.01d) Reply-To: djgpp AT delorie DOT com On 14 Jan 99, at 17:48, Paul Richards wrote: > Hi, > When I try a program like: > > #include > > void main(void) { > complex a; > }; > > I get an error saying "complex undeclared from the compiler. I looked > at complex.h and it was almost empty. So where is the proper complex.h > kept or am I doing something else wrong? > There is enough info in lang/cxx/complex Hint: try float_complex a1; double_complex a2; long_double_complex a3; or complex a2;