/* magstep.h 2.9.0 92/07/06
 *  Magstep calculation type function things
 *
 *  magstep(i)  is magstep i
 *  MAGSTEPHALF is magstep 1/2
 *  stepmag(f)  is nearest magstep(n) to f
 */

#define MAGSTEPONE 	1.2
#define MAGSTEPHALF 	1.09544511501033222690

double	magstep ARGS((int i));
double	stepmag ARGS((double f));
