From: rellwood Newsgroups: comp.os.msdos.djgpp Subject: Re: Problems.... Date: 28 Apr 1997 13:19:53 -0700 Organization: University of Southern California, Los Angeles, CA Lines: 25 Sender: rellwood AT aludra DOT usc DOT edu Message-ID: References: <3364074F DOT 1348 AT pacbell DOT net> NNTP-Posting-Host: aludra.usc.edu Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII In-Reply-To: <3364074F.1348@pacbell.net> To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk On Mon, 28 Apr 1997 adamk AT pacbell DOT net wrote: > I am very desperate here. I connot figure out why I cannot program > anything. AND IT'S ALL BECAUSE OF MY IOSTREAM.H! It seems no one can > help me. I am thinking it has something to do with my > Autoexec.bat. I made the thing by "edit autoexec.bat" in C:/DJGPP. And > this is what it looks like. > set djgpp=c:/djgpp/djgpp.env > c:\djgpp\bin > path=c:\dos;c:\bin;c:\tc\bin > path=c:\dos;c:\bin;c:\djgpp\bin;c:\tc\bin It looks like you have Turbo C on your system and maybe your computer is getting confused between the two compilers. Also, it's pointless to have two path lines because one will just override the other. Also, you're using forward slashes when you should be using backslashes! Try changing your autoexec.bat to: set djgpp=c:\djgpp\djgpp.env set path=c:\dos;c:\djgpp\bin -Richard Ellwood --