From: "John M. Aldrich" Newsgroups: comp.os.msdos.djgpp Subject: Re: #include <....h> don't realy works ! Date: Thu, 21 May 1998 22:57:19 -0400 Organization: Two pounds of chaos and a pinch of salt. Lines: 49 Message-ID: <3564E98F.C4D@cs.com> References: <6k1rv3$esf$1 AT news3 DOT Belgium DOT EU DOT net> NNTP-Posting-Host: ppp116.cs.net 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 jan malina wrote: > > Ok, i just started with DJGPP (Latest version) and I had a problem when I > was testing it: I maked a simple C++ program: > > #include > > void main(void){ > cout << "\t\tHello, World from DJGPP\n\n\n"; > } void is not a legal return type for main(). It must return an integer according to the ANSI C and C++ standards. > and when I compile it with gxx or gcc it says that iostream.h is not found. > It gives the same error when i do it with a exemple. > > Ps1: I am not a newbie in C/C++ > Ps2: I have added it to my path an seted the env. > Ps3: When i boot I get the error. Not enough envoiermentspace. You probably need to increase the available environment space. Look in your 'config.sys' for a line reading: SHELL=C:\WINDOWS\COMMAND.COM /P To this line, add the /E:NNNN parameter, where NNNN specifies the amount of environment space to use. Mine looks like this: SHELL=C:\WINDOWS\COMMAND.COM /P/E:2048 If the line doesn't exist, go ahead and add it. > Ps4: Sorry for my poor speling. I am dutch and 11 years ! You spell perfectly well for someone who is 11 years old and Dutch. :-) If you continue to have problems, please post a system report as described in chapter 6.12 of the DJGPP Frequently Asked Questions list. hth! -- --------------------------------------------------------------------- | John M. Aldrich | "History does not record anywhere at | | aka Fighteer I | any time a religion that has any | | mailto:fighteer AT cs DOT com | rational basis." | | http://www.cs.com/fighteer | - Lazarus Long | ---------------------------------------------------------------------