updated on Sun Jan 22 12:09:12 UTC 2012
[aur-mirror.git] / xlispstat / fmax.patch
blob2eb3eab0bb9a316fcf6ed68075571ecc7055758e
1 --- xlispstat-3-52-20/lowess.c.orig 2010-06-30 18:12:58.000000000 +0200
2 +++ xlispstat-3-52-20/lowess.c 2010-06-30 18:13:23.000000000 +0200
3 @@ -12,7 +12,6 @@
4 /* forward declarations */
5 static double pow2 P1H(double);
6 static double pow3 P1H(double x);
7 -static double fmax P2H(double, double);
8 static VOID sort P2H(double *, int);
9 static VOID lowest P11H(double *, double *, int, double, double *,
10 int, int, double *, int, double *, int *);
11 @@ -20,7 +19,6 @@
13 static double pow2 P1C(double, x) { return(x * x); }
14 static double pow3 P1C(double, x) { return(x * x * x); }
15 -static double fmax P2C(double, x, double, y) { return (x > y ? x : y); }
17 int lowess P9C(double *, x, double *, y, int, n, double, f, int, nsteps, double, delta,
18 double *, ys, double *, rw, double *, res)