From 7d8d1b22ba7a21aa241051fb60138175bebac9de Mon Sep 17 00:00:00 2001 From: AJ Rossini Date: Wed, 17 Oct 2007 09:26:13 +0200 Subject: [PATCH] min and max local functions are int, not double. Error found and diagnosed by Carlos Ungil, thanks! --- lib/cdists.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cdists.c b/lib/cdists.c index 582b950..7be4379 100644 --- a/lib/cdists.c +++ b/lib/cdists.c @@ -4,8 +4,8 @@ extern void normbase(double *,double *); extern void gammabase(double *,double *, double *); extern void studentbase(double *,double *, double *); extern void betabase(double *, double *,double *,int *, int *,double *); -extern double max(double, double); -extern double min(double, double); +extern int max(int, int); +extern int min(int, int); extern void xlfail(char *); -- 2.11.4.GIT