From c8babc9450681cf208c79b14ad742088dca08591 Mon Sep 17 00:00:00 2001 From: sjborley Date: Tue, 31 May 2005 16:37:22 +0000 Subject: [PATCH] Added prototype for evalAccLimits() --- src/maths/misc/accuracy.h | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/maths/misc/accuracy.h b/src/maths/misc/accuracy.h index 42b83bfbd..a03471c98 100644 --- a/src/maths/misc/accuracy.h +++ b/src/maths/misc/accuracy.h @@ -1,14 +1,21 @@ /********** Copyright 1991 Regents of the University of California. All rights reserved. Authors: 1987 Karti Mayaram, 1991 David Gates +$Id$ **********/ + +#ifndef ACCURACY_H +#define ACCURACY_H + /* * Definitions of Globals for Machine Accuracy Limits */ -#ifndef ACC_H -#define ACC_H + extern double BMin; /* lower limit for B(x) */ extern double BMax; /* upper limit for B(x) */ extern double ExpLim; /* limit for exponential */ extern double Accuracy; /* accuracy of the machine */ -#endif /* ACC_H */ + +extern void evalAccLimits(void); + +#endif /* ACCURACY_H */