From: "Marp" Newsgroups: comp.os.msdos.djgpp Subject: Re: parse error Date: Sun, 19 Dec 1999 19:01:33 -0500 Organization: MindSpring Enterprises Lines: 21 Message-ID: <83jrg0$77j$1@nntp6.atl.mindspring.net> References: <385d557d AT news DOT esva DOT net> NNTP-Posting-Host: c7.b7.cf.29 X-Server-Date: 19 Dec 1999 23:58:56 GMT X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Wes Henwood wrote in message news:385d557d AT news DOT esva DOT net... > What is a parse error? If I try to compile C programs with DJGPP, that > compile normally on other compilers, I get this error. > A parse error is when the compiler encounters a mistake in your code. The following things can cause a parse error: omitting a semicolon where one is needed, or putting one where it doesn't belong. mismatching brackets, braces or parenthesis. using a nonstandard keyword such as "far". There might be other things that could cause this error. Since you say it works in one compiler and not another, it probably uses a nonstandard keyword, or expects a symbol to be #defined which isn't in DJGPP. It would make it easier for someone to tell you exactly what the problem is if you posted more information.