Date: Wed, 28 Jan 1998 16:19:40 +0200 (IST) From: Eli Zaretskii To: Tom Chojnacki cc: djgpp AT delorie DOT com Subject: Re: division by 0 In-Reply-To: <34CF2295.7457@quantum.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Wed, 28 Jan 1998, Tom Chojnacki wrote: > my program exits and I get "Floating Point exception". > Is there any way to cause that my program not to stop after > division by zero. You need to set the FPU so that FP exception generation in case of such illegal operations is disabled. DJGPP v2 has a function calle `_control87' to do that. I don't know whether v1.x had it. I would suggest to change your source to not divide by zero in the first place, though. Not every platform will let you get away with this, you know.