/*Copyright (C) 1992, 1996 by Thomas Glen Smith. All Rights Reserved.*/
/* pitimes APL2 V1.0.0 *************************************************
* Returns a multiple of pi = 3.14159... *
***********************************************************************/
#define INCLUDES MATH
#include "includes.h"
double pitimes(rite)
double rite;
{
static double pi = PI; /* 3.14159265358979323846 */
return(rite * pi);
}