ports/astro/libnova/files/patch-src_hyperbolic_motion.c
Marcus Alves Grando db8ed14daf - Change nan("chars") to strtod("NAN(chars)", NULL) and remove dependency of gcc 3.3
- Bump PORTREVISION
- portlint(1)

PR:		93520
Submitted by:	Frank W. Josellis <frank@dynamical-systems.org>
2006-02-18 21:25:14 +00:00

17 lines
635 B
C

--- src/hyperbolic_motion.c.orig Tue Jul 5 11:09:22 2005
+++ src/hyperbolic_motion.c Sat Feb 18 02:17:12 2006
@@ -69,12 +69,12 @@
F = Z1 * G1;
Q3 = Q3 + F;
if (Z > 100 || fabs(F) > 10000)
- return nan("0");
+ return strtod("NAN(0)", NULL);
if (fabs(F) > PREC)
goto next_z;
L++;
if (L > 100)
- return nan("0");
+ return strtod("NAN(0)", NULL);
do
{
S1 = S;