Date: Mon, 13 Jul 1998 13:13:34 +0300 (IDT) From: Eli Zaretskii To: stjacy cc: djgpp AT delorie DOT com Subject: Re: a strange problem about djgpp v2.1 In-Reply-To: <01bcea00$1bf6f400$ad0620a3@nydia-3> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On 12 Jul 1998, stjacy wrote: > #include > #include > > int main() > {} > > The compiler complaind that there are name conflict about "exception"! This is a known problem with math.h from DJGPP v2.01: one of the functions there uses struct exception, and `exception' is a reserved word in the latest versions of C++. v2.02 corrects that. If you can't avoid using , I suggest the following workaround (warning: untested code follows): #define exception __exception #include #undef exception #include int main () {}