Date: Sun, 13 Oct 1996 08:27:27 +0200 (IST) From: Eli Zaretskii To: Ferdinand Trauttmansdorff Cc: djgpp AT delorie DOT com Subject: Re: Help - old dos.h bug? In-Reply-To: <53mdif$bs1@freenet-news.carleton.ca> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On 11 Oct 1996, Ferdinand Trauttmansdorff wrote: > ERROR: c:/djgpp2/include/dos.h:197: parse error before `;' > > 195: struct _DOSERROR { > 196: int exterror; > 197: char class; <---- Isn't "class" a reserved word?? > 198: char action; > 199: char locus; > 200: }; Make it say so, and live happily ever after: struct _DOSERROR { int exterror; #ifdef __cplusplus char errclass; #else char class; #endif char action; char locus; };