From: "A. Sinan Unur" Newsgroups: comp.os.msdos.djgpp Subject: Re: undefined ref to 'cout' Date: Wed, 25 Jun 1997 12:21:08 -0400 Organization: Cornell University Lines: 16 Sender: asu1 AT cornell DOT edu (Verified) Message-ID: <33B14574.76AD@cornell.edu> References: NNTP-Posting-Host: 128 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Laura Morris wrote: > I just installed DJGPP on my system at home and I've come up with a > weird error. i find not being able to read a file called README.1ST _very_ weird. there is nothing weird about the error. you can either explictly link the libraries or have gxx take care of it for you. READ README.1ST. > I tried this simple little program below: > void main(void) the ONE AND ONLY correct return type for main is int. Sinan