summaryrefslogtreecommitdiff
path: root/math/xlispstat/patches/patch-aa
blob: 14844cde28880ae86e9186ec8d09b6e17f676198 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$NetBSD: patch-aa,v 1.4 2009/11/01 16:07:10 tnn Exp $

--- lowess.c.orig	2000-11-25 00:17:38.000000000 +0100
+++ lowess.c
@@ -12,7 +12,9 @@
 /* forward declarations */
 static double pow2 P1H(double);
 static double pow3 P1H(double x);
+#if !(defined(__DragonFly__) && __DragonFly_version >= 200204) && !(defined(__NetBSD__) && __NetBSD_Version__ >= 599002100)
 static double fmax P2H(double, double);
+#endif
 static VOID sort P2H(double *, int);
 static VOID lowest P11H(double *, double *, int, double, double *,
                         int, int, double *, int, double *, int *);
@@ -20,7 +22,9 @@ static VOID lowest P11H(double *, double
 
 static double pow2 P1C(double, x) { return(x * x); }
 static double pow3 P1C(double, x) { return(x * x * x); }
+#if !(defined(__DragonFly__) && __DragonFly_version >= 200204) && !(defined(__NetBSD__) && __NetBSD_Version__ >= 599002100)
 static double fmax P2C(double, x, double, y) { return (x > y ? x : y); }
+#endif
 
 int lowess P9C(double *, x, double *, y, int, n, double, f, int, nsteps, double, delta,
                double *, ys, double *, rw, double *, res)