Date: Fri, 12 May 2000 19:45:08 +0200 (METDST) Message-Id: <200005121745.TAA07330@tyr.diku.dk> From: Morten Welinder To: djgpp-workers AT delorie DOT com Subject: Re: Math functions Reply-To: djgpp-workers AT delorie DOT com If you disagree with whatever the powers that be decide for, say, atan2, you could express that as suitable #ifdefs. #ifdef C99_BROKEN_ATAN2 /* A bunch of crazy people want this bizarre behaviour. */ if (y == 0 & x == 0) return 0; #endif Morten